diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2013-06-28 15:47:08 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2013-06-28 15:47:08 +0000 |
commit | c026e8bc8e2afaf45cdb44670995afd8953e075c (patch) | |
tree | 29d50ca05020a897c8f20c2d03d7a15b5c001724 /llvm/lib/Target/R600/AMDGPUMachineFunction.h | |
parent | ce540330df0d0cd29a302839c7c75100b1b1d136 (diff) | |
download | bcm5719-llvm-c026e8bc8e2afaf45cdb44670995afd8953e075c.tar.gz bcm5719-llvm-c026e8bc8e2afaf45cdb44670995afd8953e075c.zip |
R600: Add local memory support via LDS
Reviewed-by: Vincent Lejeune<vljn at ovi.com>
llvm-svn: 185162
Diffstat (limited to 'llvm/lib/Target/R600/AMDGPUMachineFunction.h')
-rw-r--r-- | llvm/lib/Target/R600/AMDGPUMachineFunction.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Target/R600/AMDGPUMachineFunction.h b/llvm/lib/Target/R600/AMDGPUMachineFunction.h index 21c8c51dae4..5d5df1249b4 100644 --- a/llvm/lib/Target/R600/AMDGPUMachineFunction.h +++ b/llvm/lib/Target/R600/AMDGPUMachineFunction.h @@ -23,6 +23,8 @@ private: public: AMDGPUMachineFunction(const MachineFunction &MF); unsigned ShaderType; + /// Number of bytes in the LDS that are being used. + unsigned LDSSize; }; } |