Skip to content

Commit 1f5bf11

Browse files
committed
Fix build
1 parent 3e9dd91 commit 1f5bf11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1498,8 +1498,8 @@ bool SystemZDAGToDAGISel::canUseBlockOperation(StoreSDNode *Store,
14981498
if (V1 == V2 && End1 == End2)
14991499
return false;
15001500

1501-
return AA->isNoAlias(MemoryLocation(V1, End1, Load->getAAInfo()),
1502-
MemoryLocation(V2, End2, Store->getAAInfo()));
1501+
return BatchAA->isNoAlias(MemoryLocation(V1, End1, Load->getAAInfo()),
1502+
MemoryLocation(V2, End2, Store->getAAInfo()));
15031503
}
15041504

15051505
bool SystemZDAGToDAGISel::storeLoadCanUseMVC(SDNode *N) const {

0 commit comments

Comments
 (0)