diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2006-10-29 02:26:30 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2006-10-29 02:26:30 +0000 |
commit | f6aaaaa39ef0901623965b9e8306c36a6d3bb89e (patch) | |
tree | efd2d0021ae17f26fec3e0c4a3b11508d99c8885 /lib | |
parent | bad7f48c7070444eeb767c169f8bbed86b2c1ae1 (diff) | |
download | external_llvm-f6aaaaa39ef0901623965b9e8306c36a6d3bb89e.zip external_llvm-f6aaaaa39ef0901623965b9e8306c36a6d3bb89e.tar.gz external_llvm-f6aaaaa39ef0901623965b9e8306c36a6d3bb89e.tar.bz2 |
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
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index e1fda39..b9b9ef0 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<LoadSDNode>(N); ID.AddInteger(LD->getAddressingMode()); |