summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h
diff options
context:
space:
mode:
authorMatt Arsenault <Matthew.Arsenault@amd.com>2016-08-11 17:15:28 +0000
committerMatt Arsenault <Matthew.Arsenault@amd.com>2016-08-11 17:15:28 +0000
commit69fd2c11795f85e22b61fca7bc7b12d92418a6db (patch)
tree2fa4537f0eb3680eaf0b98c20b340fcf90f87d07 /llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h
parentd3344378c66b4262cadc5c89856b519fceeb0852 (diff)
downloadbcm5719-llvm-69fd2c11795f85e22b61fca7bc7b12d92418a6db.tar.gz
bcm5719-llvm-69fd2c11795f85e22b61fca7bc7b12d92418a6db.zip
AMDGPU: Remove unused tracking of flat instructions
llvm-svn: 278361
Diffstat (limited to 'llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h')
-rw-r--r--llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h b/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h
index 7d0eb59a29a..61b38c8e55f 100644
--- a/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h
+++ b/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h
@@ -82,7 +82,6 @@ private:
bool HasSpilledSGPRs;
bool HasSpilledVGPRs;
bool HasNonSpillStackObjects;
- bool HasFlatInstructions;
unsigned NumSpilledSGPRs;
unsigned NumSpilledVGPRs;
@@ -308,14 +307,6 @@ public:
HasNonSpillStackObjects = StackObject;
}
- bool hasFlatInstructions() const {
- return HasFlatInstructions;
- }
-
- void setHasFlatInstructions(bool UseFlat = true) {
- HasFlatInstructions = UseFlat;
- }
-
unsigned getNumSpilledSGPRs() const {
return NumSpilledSGPRs;
}
OpenPOWER on IntegriCloud