forked from OSchip/llvm-project
Added LLVM_FALLTHROUGH to address warning: this statement may fall through. NFC.
llvm-svn: 304356
This commit is contained in:
parent
c752c4bf56
commit
0b69e363f6
|
@ -691,6 +691,7 @@ MemDepResult MemoryDependenceResults::getSimplePointerDependencyFrom(
|
||||||
// load query, we can safely ignore it (scan past it).
|
// load query, we can safely ignore it (scan past it).
|
||||||
if (isLoad)
|
if (isLoad)
|
||||||
continue;
|
continue;
|
||||||
|
LLVM_FALLTHROUGH;
|
||||||
default:
|
default:
|
||||||
// Otherwise, there is a potential dependence. Return a clobber.
|
// Otherwise, there is a potential dependence. Return a clobber.
|
||||||
return MemDepResult::getClobber(Inst);
|
return MemDepResult::getClobber(Inst);
|
||||||
|
|
Loading…
Reference in New Issue