1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00

Correct comment

llvm-svn: 214945
This commit is contained in:
Matt Arsenault 2014-08-06 00:44:25 +00:00
parent 129ba2ac92
commit 7d4ad478b1

View File

@ -35,7 +35,7 @@ static std::string computeDataLayout(const AMDGPUSubtarget &ST) {
std::string Ret = "e-p:32:32";
if (ST.is64bit()) {
// 32-bit local, and region pointers. 64-bit private, global, and constant.
// 32-bit private, local, and region pointers. 64-bit global and constant.
Ret += "-p1:64:64-p2:64:64-p3:32:32-p4:64:64-p5:32:32-p24:64:64";
}