From: Sanjay Patel Date: Thu, 10 Sep 2015 16:31:19 +0000 (+0000) Subject: 80-cols; NFC X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a77744ddb187221a6e4bce5b54c2659515958946;p=oota-llvm.git 80-cols; NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@247295 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Utils/SimplifyCFG.cpp b/lib/Transforms/Utils/SimplifyCFG.cpp index da20f7e30f7..e00a96161cd 100644 --- a/lib/Transforms/Utils/SimplifyCFG.cpp +++ b/lib/Transforms/Utils/SimplifyCFG.cpp @@ -83,13 +83,13 @@ STATISTIC(NumSpeculations, "Number of speculative executed instructions"); namespace { // The first field contains the value that the switch produces when a certain - // case group is selected, and the second field is a vector containing the cases - // composing the case group. + // case group is selected, and the second field is a vector containing the + // cases composing the case group. typedef SmallVector>, 2> SwitchCaseResultVectorTy; // The first field contains the phi node that generates a result of the switch - // and the second field contains the value generated for a certain case in the switch - // for that PHI. + // and the second field contains the value generated for a certain case in the + // switch for that PHI. typedef SmallVector, 4> SwitchCaseResultsTy; /// ValueEqualityComparisonCase - Represents a case of a switch.