summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/R600/AMDGPUISelLowering.cpp
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2013-07-23 23:55:03 +0000
committerTom Stellard <thomas.stellard@amd.com>2013-07-23 23:55:03 +0000
commitc54731aa9d527f3a39148e4fbf6b99b89d1aef7c (patch)
tree7aedb404e313eff68880f14970adbdd51acc2e42 /llvm/lib/Target/R600/AMDGPUISelLowering.cpp
parent8cb0e47c9ee2061cedb06bbb648e1d5c2efea82e (diff)
downloadbcm5719-llvm-c54731aa9d527f3a39148e4fbf6b99b89d1aef7c.tar.gz
bcm5719-llvm-c54731aa9d527f3a39148e4fbf6b99b89d1aef7c.zip
DAGCombiner: Pass the correct type to TargetLowering::isF(Abs|Neg)Free
This commit also implements these functions for R600 and removes a test case that was relying on the buggy behavior. llvm-svn: 187007
Diffstat (limited to 'llvm/lib/Target/R600/AMDGPUISelLowering.cpp')
-rw-r--r--llvm/lib/Target/R600/AMDGPUISelLowering.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/llvm/lib/Target/R600/AMDGPUISelLowering.cpp b/llvm/lib/Target/R600/AMDGPUISelLowering.cpp
index c90176b8f88..779d97f1776 100644
--- a/llvm/lib/Target/R600/AMDGPUISelLowering.cpp
+++ b/llvm/lib/Target/R600/AMDGPUISelLowering.cpp
@@ -115,6 +115,20 @@ AMDGPUTargetLowering::AMDGPUTargetLowering(TargetMachine &TM) :
}
//===---------------------------------------------------------------------===//
+// Target Properties
+//===---------------------------------------------------------------------===//
+
+bool AMDGPUTargetLowering::isFAbsFree(EVT VT) const {
+ assert(VT.isFloatingPoint());
+ return VT == MVT::f32;
+}
+
+bool AMDGPUTargetLowering::isFNegFree(EVT VT) const {
+ assert(VT.isFloatingPoint());
+ return VT == MVT::f32;
+}
+
+//===---------------------------------------------------------------------===//
// TargetLowering Callbacks
//===---------------------------------------------------------------------===//
OpenPOWER on IntegriCloud