diff options
| author | Dan Gohman <gohman@apple.com> | 2008-02-07 18:41:25 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2008-02-07 18:41:25 +0000 |
| commit | 16d4bc3dc0bb78e57ea23e80457836f58abde34d (patch) | |
| tree | 23fe089b4083a8580afbeb83f7ca673ca4ee3c74 /llvm/lib/Target/PowerPC/PPCISelLowering.cpp | |
| parent | 0f166de892ac9b53c4dd27dcbadea236cc2fe899 (diff) | |
| download | bcm5719-llvm-16d4bc3dc0bb78e57ea23e80457836f58abde34d.tar.gz bcm5719-llvm-16d4bc3dc0bb78e57ea23e80457836f58abde34d.zip | |
Follow Chris' suggestion; change the PseudoSourceValue accessors
to return pointers instead of references, since this is always what
is needed.
llvm-svn: 46857
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCISelLowering.cpp')
| -rw-r--r-- | llvm/lib/Target/PowerPC/PPCISelLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp index 28aa35c7375..f61ecce6312 100644 --- a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp +++ b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp @@ -2203,7 +2203,7 @@ static SDOperand LowerSINT_TO_FP(SDOperand Op, SelectionDAG &DAG) { Op.getOperand(0)); // STD the extended value into the stack slot. - MemOperand MO(&PseudoSourceValue::getFixedStack(), + MemOperand MO(PseudoSourceValue::getFixedStack(), MemOperand::MOStore, FrameIdx, 8, 8); SDOperand Store = DAG.getNode(PPCISD::STD_32, MVT::Other, DAG.getEntryNode(), Ext64, FIdx, |

