[llvm] r247295 - 80-cols; NFC
Sanjay Patel via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 10 09:31:19 PDT 2015
Author: spatel
Date: Thu Sep 10 11:31:19 2015
New Revision: 247295
URL: http://llvm.org/viewvc/llvm-project?rev=247295&view=rev
Log:
80-cols; NFC
Modified:
llvm/trunk/lib/Transforms/Utils/SimplifyCFG.cpp
Modified: llvm/trunk/lib/Transforms/Utils/SimplifyCFG.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Utils/SimplifyCFG.cpp?rev=247295&r1=247294&r2=247295&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Utils/SimplifyCFG.cpp (original)
+++ llvm/trunk/lib/Transforms/Utils/SimplifyCFG.cpp Thu Sep 10 11:31:19 2015
@@ -83,13 +83,13 @@ STATISTIC(NumSpeculations, "Number of sp
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<std::pair<Constant *, SmallVector<ConstantInt *, 4>>, 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<std::pair<PHINode *, Constant *>, 4> SwitchCaseResultsTy;
/// ValueEqualityComparisonCase - Represents a case of a switch.
More information about the llvm-commits
mailing list