diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2015-02-04 23:14:18 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2015-02-04 23:14:18 +0000 |
commit | f6afc80cc046541cf62def5467a94acb17ba9b52 (patch) | |
tree | 18f307f6145928ed723098b643b850c3b5c5a4e3 /llvm/lib/Target | |
parent | ad13d4e8a6e9b88340d4fde1aa924425d6668ffa (diff) | |
download | bcm5719-llvm-f6afc80cc046541cf62def5467a94acb17ba9b52.tar.gz bcm5719-llvm-f6afc80cc046541cf62def5467a94acb17ba9b52.zip |
R600/SI: Enable subreg liveness by default
llvm-svn: 228228
Diffstat (limited to 'llvm/lib/Target')
-rw-r--r-- | llvm/lib/Target/R600/AMDGPUSubtarget.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/Target/R600/AMDGPUSubtarget.h b/llvm/lib/Target/R600/AMDGPUSubtarget.h index 0c0145cb2b3..2f2a152519a 100644 --- a/llvm/lib/Target/R600/AMDGPUSubtarget.h +++ b/llvm/lib/Target/R600/AMDGPUSubtarget.h @@ -243,6 +243,10 @@ public: // FIXME: Not sure what this is for other subtagets. llvm_unreachable("do not know max waves per CU for this subtarget."); } + + bool enableSubRegLiveness() const override { + return true; + } }; } // End namespace llvm |