diff options
| author | Chris Lattner <sabre@nondot.org> | 2005-08-26 00:43:46 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2005-08-26 00:43:46 +0000 |
| commit | d7050a9c50211dd215cb3c2bc28b4fb6bfa4a116 (patch) | |
| tree | 82146a16ffaa5b9a3bfcc7a9f45e4efc2f94b5a3 | |
| parent | bb22df31d9cf329deca2cf770885869bd7c26c94 (diff) | |
the 5th operand is the 4th number
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23074 91177308-0d34-0410-b5e6-96231b3b80d8
| -rw-r--r-- | lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp index 612e3e14aa..d94e8026dd 100644 --- a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp +++ b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp @@ -1122,7 +1122,7 @@ SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) { TLI.LowerOperation(DAG.getNode(ISD::SELECT_CC, Node->getValueType(0), Node->getOperand(0), Node->getOperand(1), Tmp3, Tmp4, - Node->getOperand(5)), DAG); + Node->getOperand(4)), DAG); if (Tmp.Val) { Result = LegalizeOp(Tmp); break; |
