diff options
author | Chris Lattner <sabre@nondot.org> | 2006-10-28 06:15:26 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-10-28 06:15:26 +0000 |
commit | 6fb6ef4d65abcbbb0b0d81e1b51d99949664ac86 (patch) | |
tree | 4ac8c55b220af2a1db67c34300874ff637e83625 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 31b6ddad31689b996c94dcde5f32fb2585df4af6 (diff) |
Fix a serious bug that caused any x86 vector stuff to infinite loop
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31254 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 6b1a1e15da..e2f8e99237 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -331,7 +331,7 @@ static void AddNodeIDNode(FoldingSetNodeID &ID, SDOperand Op1, SDOperand Op2, SDOperand Op3) { AddNodeIDOpcode(ID, OpC); AddNodeIDValueTypes(ID, VTList); - AddNodeIDOperands(ID, Op1, Op2); + AddNodeIDOperands(ID, Op1, Op2, Op3); } static void AddNodeIDNode(FoldingSetNodeID &ID, unsigned short OpC, SDVTList VTList, |