[llvm] r212259 - Minor stylistic fix in SimplifyCFG (test commit)
Marcello Maggioni
hayarms at gmail.com
Thu Jul 3 01:29:07 PDT 2014
Author: mggm
Date: Thu Jul 3 03:29:06 2014
New Revision: 212259
URL: http://llvm.org/viewvc/llvm-project?rev=212259&view=rev
Log:
Minor stylistic fix in SimplifyCFG (test commit)
Modified:
llvm/trunk/lib/Transforms/Utils/SimplifyCFG.cpp
Modified: llvm/trunk/lib/Transforms/Utils/SimplifyCFG.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Utils/SimplifyCFG.cpp?rev=212259&r1=212258&r2=212259&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Utils/SimplifyCFG.cpp (original)
+++ llvm/trunk/lib/Transforms/Utils/SimplifyCFG.cpp Thu Jul 3 03:29:06 2014
@@ -3529,7 +3529,8 @@ SwitchLookupTable::SwitchLookupTable(Mod
// 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])
More information about the llvm-commits
mailing list