diff options
| author | Tom Stellard <thomas.stellard@amd.com> | 2013-07-23 23:55:03 +0000 |
|---|---|---|
| committer | Tom Stellard <thomas.stellard@amd.com> | 2013-07-23 23:55:03 +0000 |
| commit | c54731aa9d527f3a39148e4fbf6b99b89d1aef7c (patch) | |
| tree | 7aedb404e313eff68880f14970adbdd51acc2e42 /llvm/lib/Target/R600/AMDGPUISelLowering.cpp | |
| parent | 8cb0e47c9ee2061cedb06bbb648e1d5c2efea82e (diff) | |
| download | bcm5719-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.cpp | 14 |
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 //===---------------------------------------------------------------------===// |

