diff options
author | Marcello Maggioni <hayarms@gmail.com> | 2014-07-03 08:29:06 +0000 |
---|---|---|
committer | Marcello Maggioni <hayarms@gmail.com> | 2014-07-03 08:29:06 +0000 |
commit | 89c05ad165812fc7d29fa473b2a4439c0919e47d (patch) | |
tree | 86a2f1599113c14c7b98743580c25b8bab627ca9 | |
parent | 254bd27ce2b9fd4394aa93c863c74791864262bb (diff) | |
download | llvm-89c05ad165812fc7d29fa473b2a4439c0919e47d.zip llvm-89c05ad165812fc7d29fa473b2a4439c0919e47d.tar.gz llvm-89c05ad165812fc7d29fa473b2a4439c0919e47d.tar.bz2 |
Minor stylistic fix in SimplifyCFG (test commit)
llvm-svn: 212259
-rw-r--r-- | llvm/lib/Transforms/Utils/SimplifyCFG.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/SimplifyCFG.cpp b/llvm/lib/Transforms/Utils/SimplifyCFG.cpp index b1f9bff..a40bc1d 100644 --- a/llvm/lib/Transforms/Utils/SimplifyCFG.cpp +++ b/llvm/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]) |