summaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff options
context:
space:
mode:
authorMatt Arsenault <Matthew.Arsenault@amd.com>2013-11-17 00:06:39 +0000
committerMatt Arsenault <Matthew.Arsenault@amd.com>2013-11-17 00:06:39 +0000
commit94437c9691d538cc5d3862660c79fce2a32e2279 (patch)
tree05bd5d3f66fa1d159f64f522349b498867854bc7 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp
parentbebe48dbfe00078329341945bfb11f778ace6d12 (diff)
downloadllvm-94437c9691d538cc5d3862660c79fce2a32e2279.tar.gz
llvm-94437c9691d538cc5d3862660c79fce2a32e2279.tar.bz2
llvm-94437c9691d538cc5d3862660c79fce2a32e2279.tar.xz
Use right address space pointer size
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194940 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAG.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index 85e5494b8e..12105341e8 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -1126,9 +1126,10 @@ SDValue SelectionDAG::getGlobalAddress(const GlobalValue *GV, SDLoc DL,
unsigned char TargetFlags) {
assert((TargetFlags == 0 || isTargetGA) &&
"Cannot set target flags on target-independent globals");
+ const TargetLowering *TLI = TM.getTargetLowering();
// Truncate (with sign-extension) the offset value to the pointer size.
- unsigned BitWidth = TM.getTargetLowering()->getPointerTy().getSizeInBits();
+ unsigned BitWidth = TLI->getPointerTypeSizeInBits(GV->getType());
if (BitWidth < 64)
Offset = SignExtend64(Offset, BitWidth);