summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-12-19 16:51:03 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-12-19 16:51:03 +0000
commitb6601f1ce7f14f6c39ecba6d60bc2d5dc75abc06 (patch)
treef66221d2cc8548660f6253a135fbeface7f56f85 /lib
parentbd2926b0566908611787c688763cd36d8eb55a84 (diff)
downloadllvm-b6601f1ce7f14f6c39ecba6d60bc2d5dc75abc06.tar.gz
llvm-b6601f1ce7f14f6c39ecba6d60bc2d5dc75abc06.tar.bz2
llvm-b6601f1ce7f14f6c39ecba6d60bc2d5dc75abc06.tar.xz
Small simplification, p0 is the same as p.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197699 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/R600/AMDGPUTargetMachine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/R600/AMDGPUTargetMachine.cpp b/lib/Target/R600/AMDGPUTargetMachine.cpp
index a3d95b5210..e20e92014d 100644
--- a/lib/Target/R600/AMDGPUTargetMachine.cpp
+++ b/lib/Target/R600/AMDGPUTargetMachine.cpp
@@ -50,7 +50,7 @@ SchedCustomRegistry("r600", "Run R600's custom scheduler",
createR600MachineScheduler);
static std::string computeDataLayout(const AMDGPUSubtarget &ST) {
- std::string Ret = "e-p0:32:32";
+ std::string Ret = "e-p:32:32";
if (ST.is64bit()) {
// 32-bit private, local, and region pointers. 64-bit global and constant.