diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2014-07-21 15:45:01 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2014-07-21 15:45:01 +0000 |
commit | b02094e115fcc94c01b4d274ea24645fd3ea0c58 (patch) | |
tree | 83d43c7b53db71fb76e4727e5f04665851821a2e /llvm/lib/Target/R600/AMDGPUTargetMachine.cpp | |
parent | 42639a57de19504aaae3c1aad13699e8c4005432 (diff) | |
download | bcm5719-llvm-b02094e115fcc94c01b4d274ea24645fd3ea0c58.tar.gz bcm5719-llvm-b02094e115fcc94c01b4d274ea24645fd3ea0c58.zip |
R600/SI: Use scratch memory for large private arrays
llvm-svn: 213551
Diffstat (limited to 'llvm/lib/Target/R600/AMDGPUTargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/R600/AMDGPUTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/R600/AMDGPUTargetMachine.cpp b/llvm/lib/Target/R600/AMDGPUTargetMachine.cpp index 6a78b177e96..23beb2576ac 100644 --- a/llvm/lib/Target/R600/AMDGPUTargetMachine.cpp +++ b/llvm/lib/Target/R600/AMDGPUTargetMachine.cpp @@ -52,7 +52,7 @@ static std::string computeDataLayout(const AMDGPUSubtarget &ST) { std::string Ret = "e-p:32:32"; if (ST.is64bit()) { - // 32-bit private, local, and region pointers. 64-bit global and constant. + // 32-bit local, and region pointers. 64-bit private, global, and constant. Ret += "-p1:64:64-p2:64:64-p3:32:32-p4:64:64-p5:32:32-p24:64:64"; } |