Skip to content

Commit 79aa2da

Browse files
committed
[AggressiveInstCombine] Fix the format issue. NFC.
1 parent 1541a9b commit 79aa2da

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,8 @@ static bool foldLoadsRecursive(Value *V, LoadOps &LOps, const DataLayout &DL,
682682
return false;
683683

684684
// Make sure that there are no padding bits.
685-
if (!DL.typeSizeEqualsStoreSize(LI1->getType()) || !DL.typeSizeEqualsStoreSize(LI2->getType()))
685+
if (!DL.typeSizeEqualsStoreSize(LI1->getType()) ||
686+
!DL.typeSizeEqualsStoreSize(LI2->getType()))
686687
return false;
687688

688689
// Alias Analysis to check for stores b/w the loads.

0 commit comments

Comments
 (0)