From: Chris Lattner Date: Sat, 28 Oct 2006 06:15:26 +0000 (+0000) Subject: Fix a serious bug that caused any x86 vector stuff to infinite loop X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6fb6ef4d65abcbbb0b0d81e1b51d99949664ac86;p=oota-llvm.git 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 --- diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 6b1a1e15daa..e2f8e992370 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,