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.h | |
| 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.h')
| -rw-r--r-- | llvm/lib/Target/R600/AMDGPUISelLowering.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/Target/R600/AMDGPUISelLowering.h b/llvm/lib/Target/R600/AMDGPUISelLowering.h index 7f4468c15ed..0e1c1314d29 100644 --- a/llvm/lib/Target/R600/AMDGPUISelLowering.h +++ b/llvm/lib/Target/R600/AMDGPUISelLowering.h @@ -49,6 +49,9 @@ protected: public: AMDGPUTargetLowering(TargetMachine &TM); + virtual bool isFAbsFree(EVT VT) const; + virtual bool isFNegFree(EVT VT) const; + virtual SDValue LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl<ISD::OutputArg> &Outs, |

