summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SelectionDAG
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2009-09-15 00:38:09 +0000
committerNate Begeman <natebegeman@mac.com>2009-09-15 00:38:09 +0000
commitd41f8fd2b31b1c1de9aa02e145157e73612b0f12 (patch)
tree32614df43c52ab6b37b0ea24773a7fb317e036bb /llvm/lib/CodeGen/SelectionDAG
parent050e0cdb9aa9d3e2c68a798514ee0dd8eec3e419 (diff)
downloadbcm5719-llvm-d41f8fd2b31b1c1de9aa02e145157e73612b0f12.tar.gz
bcm5719-llvm-d41f8fd2b31b1c1de9aa02e145157e73612b0f12.zip
Remove incorrect CSE code from r81813.
llvm-svn: 81819
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index 014e62ef469..fe45319339e 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -3682,7 +3682,6 @@ SelectionDAG::getLoad(ISD::MemIndexedMode AM, DebugLoc dl,
AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
ID.AddInteger(EVT.getRawBits());
ID.AddInteger(encodeMemSDNodeFlags(ExtType, AM, isVolatile, Alignment));
- ID.AddInteger(OrigAlignment);
void *IP = 0;
if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
return SDValue(E, 0);
@@ -3745,7 +3744,6 @@ SDValue SelectionDAG::getStore(SDValue Chain, DebugLoc dl, SDValue Val,
ID.AddInteger(VT.getRawBits());
ID.AddInteger(encodeMemSDNodeFlags(false, ISD::UNINDEXED,
isVolatile, Alignment));
- ID.AddInteger(OrigAlignment);
void *IP = 0;
if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
return SDValue(E, 0);
OpenPOWER on IntegriCloud