diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2015-06-04 01:20:04 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2015-06-04 01:20:04 +0000 |
commit | 1ba52feb9673f805c5b74cf185e5384f23032522 (patch) | |
tree | 4549eda631625e2f647151560792625cd4a3ee95 /llvm/lib/Target | |
parent | 81cf1e8931cb04313a59acf7baa94b3d9ee33063 (diff) | |
download | bcm5719-llvm-1ba52feb9673f805c5b74cf185e5384f23032522.tar.gz bcm5719-llvm-1ba52feb9673f805c5b74cf185e5384f23032522.zip |
R600: Re-enable sub-reg liveness
The bug in the R600 backend that this uncovered has been fixed.
llvm-svn: 238999
Diffstat (limited to 'llvm/lib/Target')
-rw-r--r-- | llvm/lib/Target/R600/AMDGPUSubtarget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/R600/AMDGPUSubtarget.h b/llvm/lib/Target/R600/AMDGPUSubtarget.h index b262cdf5771..a5a901c739d 100644 --- a/llvm/lib/Target/R600/AMDGPUSubtarget.h +++ b/llvm/lib/Target/R600/AMDGPUSubtarget.h @@ -272,7 +272,7 @@ public: } bool enableSubRegLiveness() const override { - return false; + return true; } }; |