aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target
diff options
context:
space:
mode:
authorMichael Liao <michael.liao@intel.com>2012-08-28 23:42:17 +0000
committerMichael Liao <michael.liao@intel.com>2012-08-28 23:42:17 +0000
commit95c22a354df0cc860009ce1f559816a73fec9774 (patch)
tree3945029ca8715108844988a9fed7dfcb9e553175 /lib/Target
parent5da959daff4d509afab8de212e0c95162c00d1bb (diff)
downloadexternal_llvm-95c22a354df0cc860009ce1f559816a73fec9774.zip
external_llvm-95c22a354df0cc860009ce1f559816a73fec9774.tar.gz
external_llvm-95c22a354df0cc860009ce1f559816a73fec9774.tar.bz2
Add comments on the literal value used.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162805 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r--lib/Target/X86/X86ISelLowering.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp
index 340524c..4581bfa 100644
--- a/lib/Target/X86/X86ISelLowering.cpp
+++ b/lib/Target/X86/X86ISelLowering.cpp
@@ -14128,7 +14128,7 @@ static SDValue checkFlaggedOrCombine(SDValue Or, X86::CondCode &CC,
Opnds.push_back(I->getOperand(0));
Opnds.push_back(I->getOperand(1));
// Re-evaluate the number of nodes to be traversed.
- e += 2;
+ e += 2; // 2 more nodes (LHS and RHS) are pushed.
continue;
}