Minor stylistic fix in SimplifyCFG (test commit)

llvm-svn: 212259
This commit is contained in:
Marcello Maggioni 2014-07-03 08:29:06 +00:00
parent 254bd27ce2
commit 89c05ad165
1 changed files with 2 additions and 1 deletions

View 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])