diff options
Diffstat (limited to 'llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h')
-rw-r--r-- | llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h b/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h index 6a3eae4b128..ef91d1e4307 100644 --- a/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h +++ b/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h @@ -155,9 +155,6 @@ private: bool KernargSegmentPtr : 1; bool DispatchID : 1; bool FlatScratchInit : 1; - bool GridWorkgroupCountX : 1; - bool GridWorkgroupCountY : 1; - bool GridWorkgroupCountZ : 1; // Feature bits required for inputs passed in system SGPRs. bool WorkGroupIDX : 1; // Always initialized. @@ -336,18 +333,6 @@ public: return FlatScratchInit; } - bool hasGridWorkgroupCountX() const { - return GridWorkgroupCountX; - } - - bool hasGridWorkgroupCountY() const { - return GridWorkgroupCountY; - } - - bool hasGridWorkgroupCountZ() const { - return GridWorkgroupCountZ; - } - bool hasWorkGroupIDX() const { return WorkGroupIDX; } |