[MSSA] clang-format. NFC.
authorGeorge Burgess IV <george.burgess.iv@gmail.com>
Wed, 3 Aug 2016 19:59:11 +0000 (19:59 +0000)
committerGeorge Burgess IV <george.burgess.iv@gmail.com>
Wed, 3 Aug 2016 19:59:11 +0000 (19:59 +0000)
Didn't want to fold this in with r277640, since it touches bits that
aren't entirely related to r277640.

llvm-svn: 277641

llvm/lib/Transforms/Utils/MemorySSA.cpp
llvm/unittests/Transforms/Utils/MemorySSA.cpp

index f90ab6e..30c8bd0 100644 (file)
@@ -198,9 +198,9 @@ static bool lifetimeEndsAt(MemoryDef *MD, const MemoryLocation &Loc,
   Instruction *Inst = MD->getMemoryInst();
   if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
     switch (II->getIntrinsicID()) {
-      case Intrinsic::lifetime_start:
-      case Intrinsic::lifetime_end:
-        return AA.isMustAlias(MemoryLocation(II->getArgOperand(1)), Loc);
+    case Intrinsic::lifetime_start:
+    case Intrinsic::lifetime_end:
+      return AA.isMustAlias(MemoryLocation(II->getArgOperand(1)), Loc);
     default:
       return false;
     }
@@ -208,11 +208,7 @@ static bool lifetimeEndsAt(MemoryDef *MD, const MemoryLocation &Loc,
   return false;
 }
 
-enum class Reorderability {
-  Always,
-  IfNoAlias,
-  Never
-};
+enum class Reorderability { Always, IfNoAlias, Never };
 
 /// This does one-way checks to see if Use could theoretically be hoisted above
 /// MayClobber. This will not check the other way around.
index 956cc00..e728fdd 100644 (file)
@@ -134,9 +134,8 @@ TEST_F(MemorySSATest, MoveAStore) {
   SideStore->moveBefore(Entry->getTerminator());
   MemoryAccess *EntryStoreAccess = MSSA.getMemoryAccess(EntryStore);
   MemoryAccess *SideStoreAccess = MSSA.getMemoryAccess(SideStore);
-  MemoryAccess *NewStoreAccess = MSSA.createMemoryAccessAfter(SideStore,
-                                                         EntryStoreAccess,
-                                                         EntryStoreAccess);
+  MemoryAccess *NewStoreAccess = MSSA.createMemoryAccessAfter(
+      SideStore, EntryStoreAccess, EntryStoreAccess);
   EntryStoreAccess->replaceAllUsesWith(NewStoreAccess);
   MSSA.removeMemoryAccess(SideStoreAccess);
   MSSA.verifyMemorySSA();