diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2015-04-28 17:37:00 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2015-04-28 17:37:00 +0000 |
commit | 0a0fa03d5a7b003e1ee52a563b3db40e998e12d1 (patch) | |
tree | 0a3d81e2735f4b827d33bbdf9a9ff570235f2267 /llvm/lib | |
parent | e918faadd21179213a6a716e6340494cfeb1315b (diff) | |
download | bcm5719-llvm-0a0fa03d5a7b003e1ee52a563b3db40e998e12d1.tar.gz bcm5719-llvm-0a0fa03d5a7b003e1ee52a563b3db40e998e12d1.zip |
R600/SI: Add a lower case alias for subtarget feature: +DumpCode
llc converts all feature strings to lower case, while the LLVM C API
does not, so we need a lower case alias in order to test this with llc.
llvm-svn: 236003
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/R600/AMDGPU.td | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/Target/R600/AMDGPU.td b/llvm/lib/Target/R600/AMDGPU.td index 2e0e30a0fbc..f4ad07f0fc2 100644 --- a/llvm/lib/Target/R600/AMDGPU.td +++ b/llvm/lib/Target/R600/AMDGPU.td @@ -20,6 +20,11 @@ def FeatureDumpCode : SubtargetFeature <"DumpCode", "true", "Dump MachineInstrs in the CodeEmitter">; +def FeatureDumpCodeLower : SubtargetFeature <"dumpcode", + "DumpCode", + "true", + "Dump MachineInstrs in the CodeEmitter">; + def FeatureIRStructurizer : SubtargetFeature <"disable-irstructurizer", "EnableIRStructurizer", "false", |