diff options
author | Chris Lattner <sabre@nondot.org> | 2010-09-21 18:58:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-09-21 18:58:22 +0000 |
commit | 84bd98ac7b9f9eaa0c4259b510847481a45844a7 (patch) | |
tree | 4ce45d03a56224db151a888b2879d96918ff8cd2 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | fc448ff89b4fb7721de9da0b96fd00c13160c4c7 (diff) |
finish pushing MachinePointerInfo through selectiondags. At this point,
I think I've audited all uses, so it should be dependable for address spaces,
and the pointer+offset info should also be accurate when there.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114464 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 50a3df154a..c6eb216f63 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -4020,16 +4020,6 @@ SDValue SelectionDAG::getStore(SDValue Chain, DebugLoc dl, SDValue Val, } SDValue SelectionDAG::getStore(SDValue Chain, DebugLoc dl, SDValue Val, - SDValue Ptr, - const Value *SV, int SVOffset, bool isVolatile, - bool isNonTemporal, unsigned Alignment) { - - return getStore(Chain, dl, Val, Ptr, MachinePointerInfo(SV, SVOffset), - isVolatile, isNonTemporal, Alignment); -} - - -SDValue SelectionDAG::getStore(SDValue Chain, DebugLoc dl, SDValue Val, SDValue Ptr, MachineMemOperand *MMO) { EVT VT = Val.getValueType(); SDVTList VTs = getVTList(MVT::Other); |