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)
llvm-svn: 212259

llvm/lib/Transforms/Utils/SimplifyCFG.cpp

index b1f9bff..a40bc1d 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])