summaryrefslogtreecommitdiff
path: root/lib/Target
diff options
context:
space:
mode:
authorMatt Arsenault <Matthew.Arsenault@amd.com>2014-06-13 07:44:38 +0000
committerMatt Arsenault <Matthew.Arsenault@amd.com>2014-06-13 07:44:38 +0000
commitefa4805b5836c8f496154b2607d2983d83211ee8 (patch)
tree70ba76f594376e05cb9f89ec71ee722b97667f22 /lib/Target
parentd344c6bcf9490ca6d2460a7fe9eaefd2c961761f (diff)
downloadllvm-efa4805b5836c8f496154b2607d2983d83211ee8.tar.gz
llvm-efa4805b5836c8f496154b2607d2983d83211ee8.tar.bz2
llvm-efa4805b5836c8f496154b2607d2983d83211ee8.tar.xz
R600: Don't call setOperationAction with things that aren't opcodes.
CondCode actions are set with setCondCodeAction. This should have been a harmless bug since the values seem to only collide only with nodes that don't need to be handled, and these are already correctly setup elsewhere. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210888 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r--lib/Target/R600/AMDILISelLowering.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/Target/R600/AMDILISelLowering.cpp b/lib/Target/R600/AMDILISelLowering.cpp
index 6001899ac8..ecd26ee3bb 100644
--- a/lib/Target/R600/AMDILISelLowering.cpp
+++ b/lib/Target/R600/AMDILISelLowering.cpp
@@ -106,14 +106,6 @@ void AMDGPUTargetLowering::InitAMDILLowering() {
for (MVT VT : FloatTypes) {
// IL does not have these operations for floating point types
setOperationAction(ISD::FP_ROUND_INREG, VT, Expand);
- setOperationAction(ISD::SETOLT, VT, Expand);
- setOperationAction(ISD::SETOGE, VT, Expand);
- setOperationAction(ISD::SETOGT, VT, Expand);
- setOperationAction(ISD::SETOLE, VT, Expand);
- setOperationAction(ISD::SETULT, VT, Expand);
- setOperationAction(ISD::SETUGE, VT, Expand);
- setOperationAction(ISD::SETUGT, VT, Expand);
- setOperationAction(ISD::SETULE, VT, Expand);
}
for (MVT VT : IntTypes) {