projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
693b9ee
)
Minor stylistic fix in SimplifyCFG (test commit)
author
Marcello Maggioni
<hayarms@gmail.com>
Thu, 3 Jul 2014 08:29:06 +0000
(08:29 +0000)
committer
Marcello Maggioni
<hayarms@gmail.com>
Thu, 3 Jul 2014 08:29:06 +0000
(08:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212259
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Transforms/Utils/SimplifyCFG.cpp
patch
|
blob
|
history
diff --git
a/lib/Transforms/Utils/SimplifyCFG.cpp
b/lib/Transforms/Utils/SimplifyCFG.cpp
index b1f9bff5377fff291e2fb41cfc466714def99698..a40bc1decaabeab77385153b512e3b9f163db3ac 100644
(file)
--- a/
lib/Transforms/Utils/SimplifyCFG.cpp
+++ b/
lib/Transforms/Utils/SimplifyCFG.cpp
@@
-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])