OSDN Git Service

Small simplification, p0 is the same as p.
authorRafael Espindola <rafael.espindola@gmail.com>
Thu, 19 Dec 2013 16:51:03 +0000 (16:51 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Thu, 19 Dec 2013 16:51:03 +0000 (16:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197699 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/R600/AMDGPUTargetMachine.cpp

index a3d95b5..e20e920 100644 (file)
@@ -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.