Skip to content

Commit

Permalink
[Polly][FIX] Adjust enum after D153305
Browse files Browse the repository at this point in the history
  • Loading branch information
jdoerfert committed Jul 3, 2023
1 parent f595c50 commit b288e66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion polly/lib/Analysis/ScopBuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1649,7 +1649,7 @@ bool ScopBuilder::buildAccessCallInst(MemAccInst Inst, ScopStmt *Stmt) {
return true;

if (ME.onlyAccessesArgPointees()) {
ModRefInfo ArgMR = ME.getModRef(MemoryEffects::ArgMem);
ModRefInfo ArgMR = ME.getModRef(IRMemLocation::ArgMem);
auto AccType =
!isModSet(ArgMR) ? MemoryAccess::READ : MemoryAccess::MAY_WRITE;
Loop *L = LI.getLoopFor(Inst->getParent());
Expand Down

0 comments on commit b288e66

Please sign in to comment.