[NFC][loopIdiom] Clang format change rL303434
authorAnna Thomas <anna@azul.com>
Fri, 19 May 2017 18:00:30 +0000 (18:00 +0000)
committerAnna Thomas <anna@azul.com>
Fri, 19 May 2017 18:00:30 +0000 (18:00 +0000)
llvm-svn: 303439

llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp

index 150f9b2..97337ea 100644 (file)
@@ -112,11 +112,12 @@ private:
   bool HasMemcpy;
   /// Return code for isLegalStore()
   enum LegalStoreKind {
-    None=0,
+    None = 0,
     Memset,
     MemsetPattern,
     Memcpy,
-    DontUse // Dummy retval never to be used. Allows catching errors in retval handling.
+    DontUse // Dummy retval never to be used. Allows catching errors in retval
+            // handling.
   };
 
   /// \name Countable Loop Idiom Handling
@@ -350,7 +351,8 @@ static Constant *getMemSetPatternValue(Value *V, const DataLayout *DL) {
   return ConstantArray::get(AT, std::vector<Constant *>(ArraySize, C));
 }
 
-LoopIdiomRecognize::LegalStoreKind LoopIdiomRecognize::isLegalStore(StoreInst *SI) {
+LoopIdiomRecognize::LegalStoreKind
+LoopIdiomRecognize::isLegalStore(StoreInst *SI) {
   // Don't touch volatile stores.
   if (!SI->isSimple())
     return LegalStoreKind::None;