From b6601f1ce7f14f6c39ecba6d60bc2d5dc75abc06 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Thu, 19 Dec 2013 16:51:03 +0000 Subject: [PATCH] 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 --- lib/Target/R600/AMDGPUTargetMachine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/R600/AMDGPUTargetMachine.cpp b/lib/Target/R600/AMDGPUTargetMachine.cpp index a3d95b52109..e20e92014de 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.