forked from OSchip/llvm-project
Minor stylistic fix in SimplifyCFG (test commit)
llvm-svn: 212259
This commit is contained in:
parent
254bd27ce2
commit
89c05ad165
|
@ -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])
|
||||
|
|
Loading…
Reference in New Issue