1
0
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:
Chris Lattner 2007-05-03 00:27:11 +00:00
parent a3d01187b7
commit 0b2b0185a0
2 changed files with 6 additions and 0 deletions

View File

@ -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;
}

View File

@ -27,6 +27,7 @@ namespace llvm {
bool NoExcessFPPrecision;
bool UnsafeFPMath;
bool FiniteOnlyFPMathOption;
bool HonorSignDependentRoundingFPMathOption;
bool UseSoftFloat;
bool NoZerosInBSS;
bool ExceptionHandling;