Displaying 2 results from an estimated 2 matches for "maskandbranchfoldingislegal".
2014 Aug 07
3
[LLVMdev] Proposal: Add a target lowering hook to state that target supports floating point exception behavior.
...include/llvm/Target/TargetLowering.h
===================================================================
--- include/llvm/Target/TargetLowering.h (revision 215148)
+++ include/llvm/Target/TargetLowering.h (working copy)
@@ -261,6 +261,11 @@
bool isMaskAndBranchFoldingLegal() const {
return MaskAndBranchFoldingIsLegal;
}
+
+ /// Return true if target supports floating point exceptions.
+ bool hasFloatingPointExceptions() const {
+ return FloatingPointExceptions;
+ }
/// Return the ValueType of the result of SETCC operations. Also used to
/// obtain the target's preferred type for the cond...
2014 Aug 08
3
[LLVMdev] Proposal: Add a target lowering hook to state that target supports floating point exception behavior.
...================================================
>> --- include/llvm/Target/TargetLowering.h (revision 215148)
>> +++ include/llvm/Target/TargetLowering.h (working copy)
>> @@ -261,6 +261,11 @@
>> bool isMaskAndBranchFoldingLegal() const {
>> return MaskAndBranchFoldingIsLegal;
>> }
>> +
>> + /// Return true if target supports floating point exceptions.
>> + bool hasFloatingPointExceptions() const {
>> + return FloatingPointExceptions;
>> + }
>>
>> /// Return the ValueType of the result of SETCC operations. Also...