diff options
| author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2019-02-08 19:59:32 +0000 |
|---|---|---|
| committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2019-02-08 19:59:32 +0000 |
| commit | 564f0f832cd621c49214045c75d0d8322e789bc2 (patch) | |
| tree | 4fe62adc86851326cad8f4afef9bb8112b35e735 /llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp | |
| parent | 92a8c36735ec3dc2a9c1604916153293497eaedb (diff) | |
| download | bcm5719-llvm-564f0f832cd621c49214045c75d0d8322e789bc2.tar.gz bcm5719-llvm-564f0f832cd621c49214045c75d0d8322e789bc2.zip | |
AMDGPU: Eliminate GPU specific SubtargetFeatures
Inline compatability is determined from the individual feature
bits. These are just sets of the separate features, but will always be
treated as incompatible unless they are specifically ignored.
Defining the ISA version number here in tablegen would be nice, but it
turns out this wasn't actually used.
llvm-svn: 353558
Diffstat (limited to 'llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp')
| -rw-r--r-- | llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp b/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp index dda0fe75f80..c08d1aa1e8a 100644 --- a/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp +++ b/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp @@ -156,7 +156,6 @@ GCNSubtarget::GCNSubtarget(const Triple &TT, StringRef GPU, StringRef FS, AMDGPUSubtarget(TT), TargetTriple(TT), Gen(SOUTHERN_ISLANDS), - IsaVersion(ISAVersion0_0_0), InstrItins(getInstrItineraryForCPU(GPU)), LDSBankCount(0), MaxPrivateElementSize(0), |

