Skip to content

Commit

Permalink
Minor stylistic fix in SimplifyCFG (test commit)
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212259 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Kariddi committed Jul 3, 2014
1 parent 693b9ee commit a8f7c5c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/Transforms/Utils/SimplifyCFG.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down

0 comments on commit a8f7c5c

Please sign in to comment.