From: Marcello Maggioni Date: Thu, 3 Jul 2014 08:29:06 +0000 (+0000) Subject: Minor stylistic fix in SimplifyCFG (test commit) X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a8f7c5c8153e2851e95a562deb635e7ddce093af;p=oota-llvm.git Minor stylistic fix in SimplifyCFG (test commit) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212259 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Utils/SimplifyCFG.cpp b/lib/Transforms/Utils/SimplifyCFG.cpp index b1f9bff5377..a40bc1decaa 100644 --- 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])