Minor stylistic fix in SimplifyCFG (test commit)
authorMarcello Maggioni <hayarms@gmail.com>
Thu, 3 Jul 2014 08:29:06 +0000 (08:29 +0000)
committerMarcello Maggioni <hayarms@gmail.com>
Thu, 3 Jul 2014 08:29:06 +0000 (08:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212259 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Utils/SimplifyCFG.cpp

index b1f9bff5377fff291e2fb41cfc466714def99698..a40bc1decaabeab77385153b512e3b9f163db3ac 100644 (file)
@@ -3529,7 +3529,8 @@ SwitchLookupTable::SwitchLookupTable(Module &M,
 
   // Fill in any holes in the table with the default result.
   if (Values.size() < TableSize) {
-    assert(DefaultValue && "Need a default value to fill the lookup table holes.");
+    assert(DefaultValue &&
+           "Need a default value to fill the lookup table holes.");
     assert(DefaultValue->getType() == ValueType);
     for (uint64_t I = 0; I < TableSize; ++I) {
       if (!TableContents[I])