diff options
| author | Nate Begeman <natebegeman@mac.com> | 2009-09-15 00:38:09 +0000 |
|---|---|---|
| committer | Nate Begeman <natebegeman@mac.com> | 2009-09-15 00:38:09 +0000 |
| commit | 6647b934fcb19a24d6eb7a07750ce292d79205c3 (patch) | |
| tree | 97d4ac5377a6d8770400ae3333600f02d0fc2fc5 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
| parent | b7e7339c1e4bac5679c7a2e3b46f15d1460882c4 (diff) | |
| download | external_llvm-6647b934fcb19a24d6eb7a07750ce292d79205c3.zip external_llvm-6647b934fcb19a24d6eb7a07750ce292d79205c3.tar.gz external_llvm-6647b934fcb19a24d6eb7a07750ce292d79205c3.tar.bz2 | |
Remove incorrect CSE code from r81813.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81819 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, 0 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 014e62e..fe45319 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/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); |
