mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
expose HonorSignDependentRoundingFPMathOption to .td files
llvm-svn: 36658
This commit is contained in:
parent
a3d01187b7
commit
0b2b0185a0
@ -210,6 +210,11 @@ class Predicate<string cond> {
|
||||
string CondString = cond;
|
||||
}
|
||||
|
||||
/// NoHonorSignDependentRounding - This predicate is true if support for
|
||||
/// sign-dependent-rounding is not enabled.
|
||||
def NoHonorSignDependentRounding
|
||||
: Predicate<"!HonorSignDependentRoundingFPMath()">;
|
||||
|
||||
class Requires<list<Predicate> preds> {
|
||||
list<Predicate> Predicates = preds;
|
||||
}
|
||||
|
@ -27,6 +27,7 @@ namespace llvm {
|
||||
bool NoExcessFPPrecision;
|
||||
bool UnsafeFPMath;
|
||||
bool FiniteOnlyFPMathOption;
|
||||
bool HonorSignDependentRoundingFPMathOption;
|
||||
bool UseSoftFloat;
|
||||
bool NoZerosInBSS;
|
||||
bool ExceptionHandling;
|
||||
|
Loading…
Reference in New Issue
Block a user