diff options
| author | Dan Gohman <gohman@apple.com> | 2009-09-21 19:47:04 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2009-09-21 19:47:04 +0000 |
| commit | 169948d4180417313f5332b85d2572520592de3c (patch) | |
| tree | 4871a48055d37956277077fbc4bea72781807c57 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
| parent | 47b5330a18b00883f10807c53120a57127cc0703 (diff) | |
| download | external_llvm-169948d4180417313f5332b85d2572520592de3c.zip external_llvm-169948d4180417313f5332b85d2572520592de3c.tar.gz external_llvm-169948d4180417313f5332b85d2572520592de3c.tar.bz2 | |
Change MachineMemOperand's alignment value to be the alignment of
the base pointer, without the offset. This matches MemSDNode's
new alignment behavior, and holds more interesting information.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82473 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
| -rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 6695267..87ea19b 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -5015,10 +5015,10 @@ MachineMemOperand MemSDNode::getMemOperand() const { dyn_cast<const FrameIndexSDNode>(getBasePtr().getNode()); if (!getSrcValue() && FI) return MachineMemOperand(PseudoSourceValue::getFixedStack(FI->getIndex()), - Flags, 0, Size, getAlignment()); + Flags, 0, Size, getOriginalAlignment()); else return MachineMemOperand(getSrcValue(), Flags, getSrcValueOffset(), - Size, getAlignment()); + Size, getOriginalAlignment()); } /// Profile - Gather unique data for the node. |
