summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-09-21 06:44:06 +0000
committerChris Lattner <sabre@nondot.org>2010-09-21 06:44:06 +0000
commit7727d05dbbdd6e7bb8d89c0c5d63b460466171b4 (patch)
tree5b3b802d4421d9e0f9095fd6b1cf24138a7d7a81 /llvm/lib/Target/SystemZ/SystemZISelLowering.cpp
parent50287ea65aade6b94c340b3589b0e5c938644b19 (diff)
downloadbcm5719-llvm-7727d05dbbdd6e7bb8d89c0c5d63b460466171b4.tar.gz
bcm5719-llvm-7727d05dbbdd6e7bb8d89c0c5d63b460466171b4.zip
convert the targets off the non-MachinePointerInfo of getLoad.
llvm-svn: 114410
Diffstat (limited to 'llvm/lib/Target/SystemZ/SystemZISelLowering.cpp')
-rw-r--r--llvm/lib/Target/SystemZ/SystemZISelLowering.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp b/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp
index 67f739f690d..d6e4230d059 100644
--- a/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp
+++ b/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp
@@ -341,7 +341,7 @@ SystemZTargetLowering::LowerCCCArguments(SDValue Chain,
// from this parameter
SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
ArgValue = DAG.getLoad(LocVT, dl, Chain, FIN,
- PseudoSourceValue::getFixedStack(FI), 0,
+ MachinePointerInfo::getFixedStack(FI),
false, false, 0);
}
@@ -747,7 +747,7 @@ SDValue SystemZTargetLowering::LowerGlobalAddress(SDValue Op,
if (ExtraLoadRequired)
Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
- PseudoSourceValue::getGOT(), 0, false, false, 0);
+ MachinePointerInfo::getGOT(), false, false, 0);
// If there was a non-zero offset that we didn't fold, create an explicit
// addition for it.
OpenPOWER on IntegriCloud