[llvm] r197699 - Small simplification, p0 is the same as p.

Rafael Espindola rafael.espindola at gmail.com
Thu Dec 19 08:51:03 PST 2013


Author: rafael
Date: Thu Dec 19 10:51:03 2013
New Revision: 197699

URL: http://llvm.org/viewvc/llvm-project?rev=197699&view=rev
Log:
Small simplification, p0 is the same as p.

Modified:
    llvm/trunk/lib/Target/R600/AMDGPUTargetMachine.cpp

Modified: llvm/trunk/lib/Target/R600/AMDGPUTargetMachine.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/R600/AMDGPUTargetMachine.cpp?rev=197699&r1=197698&r2=197699&view=diff
==============================================================================
--- llvm/trunk/lib/Target/R600/AMDGPUTargetMachine.cpp (original)
+++ llvm/trunk/lib/Target/R600/AMDGPUTargetMachine.cpp Thu Dec 19 10:51:03 2013
@@ -50,7 +50,7 @@ SchedCustomRegistry("r600", "Run R600's
                     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.





More information about the llvm-commits mailing list