From: Nick Lewycky Date: Sun, 29 Oct 2006 02:26:30 +0000 (+0000) Subject: Remove spurious case. EXTLOAD is not one of the node opcodes. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f6aaaaa39ef0901623965b9e8306c36a6d3bb89e;p=oota-llvm.git Remove spurious case. EXTLOAD is not one of the node opcodes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31275 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index e1fda39b572..b9b9ef0af7b 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -401,7 +401,6 @@ static void AddNodeIDNode(FoldingSetNodeID &ID, SDNode *N) { break; } case ISD::VLOAD: - case ISD::EXTLOAD: case ISD::LOAD: { LoadSDNode *LD = cast(N); ID.AddInteger(LD->getAddressingMode());