mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
Minor stylistic fix in SimplifyCFG (test commit)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212259 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
693b9ee16f
commit
a8f7c5c815
@ -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
Block a user