diff options
| author | Tom Stellard <tstellar@redhat.com> | 2018-04-24 21:37:57 +0000 |
|---|---|---|
| committer | Tom Stellard <tstellar@redhat.com> | 2018-04-24 21:37:57 +0000 |
| commit | a2be8f4c357e3ac34b8c0a9eb4a06f4d6bcc8674 (patch) | |
| tree | 3c7e4adeabd066a66578e6301f9d9d94c5497f32 /llvm/lib/Target | |
| parent | 257882ff727695f17c2a28b2b1fc5909839b1d09 (diff) | |
| download | bcm5719-llvm-a2be8f4c357e3ac34b8c0a9eb4a06f4d6bcc8674.tar.gz bcm5719-llvm-a2be8f4c357e3ac34b8c0a9eb4a06f4d6bcc8674.zip | |
AMDGPU: Remove deprecated llvm.AMDGPU.kilp intrinsic
Summary: This is no longer used by mesa since its 18.0.0 release.
Reviewers: nhaehnle
Reviewed By: nhaehnle
Subscribers: arsenm, kzhuravl, wdng, yaxunl, dstuttard, tpr, llvm-commits, t-tye
Differential Revision: https://reviews.llvm.org/D45988
llvm-svn: 330775
Diffstat (limited to 'llvm/lib/Target')
| -rw-r--r-- | llvm/lib/Target/AMDGPU/AMDGPUIntrinsics.td | 1 | ||||
| -rw-r--r-- | llvm/lib/Target/AMDGPU/R600Instructions.td | 5 | ||||
| -rw-r--r-- | llvm/lib/Target/AMDGPU/SIInstructions.td | 5 |
3 files changed, 0 insertions, 11 deletions
diff --git a/llvm/lib/Target/AMDGPU/AMDGPUIntrinsics.td b/llvm/lib/Target/AMDGPU/AMDGPUIntrinsics.td index 18c9bd933af..63d661ad891 100644 --- a/llvm/lib/Target/AMDGPU/AMDGPUIntrinsics.td +++ b/llvm/lib/Target/AMDGPU/AMDGPUIntrinsics.td @@ -13,7 +13,6 @@ let TargetPrefix = "AMDGPU", isTarget = 1 in { def int_AMDGPU_kill : Intrinsic<[], [llvm_float_ty], []>; - def int_AMDGPU_kilp : Intrinsic<[], [], []>; } include "SIIntrinsics.td" diff --git a/llvm/lib/Target/AMDGPU/R600Instructions.td b/llvm/lib/Target/AMDGPU/R600Instructions.td index 664a690e95e..2c628d0466d 100644 --- a/llvm/lib/Target/AMDGPU/R600Instructions.td +++ b/llvm/lib/Target/AMDGPU/R600Instructions.td @@ -1739,11 +1739,6 @@ def : R600Pat < >; // KIL Patterns -def KILP : R600Pat < - (int_AMDGPU_kilp), - (MASK_WRITE (KILLGT (f32 ONE), (f32 ZERO))) ->; - def KIL : R600Pat < (int_AMDGPU_kill f32:$src0), (MASK_WRITE (KILLGT (f32 ZERO), $src0)) diff --git a/llvm/lib/Target/AMDGPU/SIInstructions.td b/llvm/lib/Target/AMDGPU/SIInstructions.td index f4e44299c6f..e9b6e788ef0 100644 --- a/llvm/lib/Target/AMDGPU/SIInstructions.td +++ b/llvm/lib/Target/AMDGPU/SIInstructions.td @@ -572,11 +572,6 @@ def : GCNPat< (SI_ELSE $src, $target, 0) >; -def : GCNPat < - (int_AMDGPU_kilp), - (SI_KILL_I1_PSEUDO (i1 0), 0) ->; - def : Pat < // -1.0 as i32 (LowerINTRINSIC_VOID converts all other constants to -1.0) (AMDGPUkill (i32 -1082130432)), |

