Skip to content

Commit f1d9f8e

Browse files
committed
fixup
Created using spr 1.3.4
1 parent a0bfcb0 commit f1d9f8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/Scalar/IndVarSimplify.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1884,7 +1884,7 @@ bool IndVarSimplify::predicateLoopExits(Loop *L, SCEVExpander &Rewriter) {
18841884
if (!I.mayHaveSideEffects())
18851885
return false;
18861886
if (auto *CB = dyn_cast<CallBase>(&I)) {
1887-
if (CB->onlyAccessesInaccessibleMemOrArgMem() &&
1887+
if (CB->onlyAccessesInaccessibleMemory() &&
18881888
llvm::all_of(CB->args(), [](const llvm::Use &U) {
18891889
return isa<Constant>(U.get());
18901890
}))

0 commit comments

Comments
 (0)