summaryrefslogtreecommitdiffstats
path: root/llvm/lib/AsmParser
diff options
context:
space:
mode:
authorMichael Ilseman <milseman@apple.com>2012-12-09 21:12:04 +0000
committerMichael Ilseman <milseman@apple.com>2012-12-09 21:12:04 +0000
commit65f1435a6f1f0beddc62bb3695344637fd78db92 (patch)
tree1a32820013839f3b04fed40a2df0927ceb90f805 /llvm/lib/AsmParser
parent2adb13c10026a983eee9e6a4d75df005d283c6a8 (diff)
downloadbcm5719-llvm-65f1435a6f1f0beddc62bb3695344637fd78db92.tar.gz
bcm5719-llvm-65f1435a6f1f0beddc62bb3695344637fd78db92.zip
Reorganize FastMathFlags to be a wrapper around unsigned, and streamline some interfaces.
llvm-svn: 169712
Diffstat (limited to 'llvm/lib/AsmParser')
-rw-r--r--llvm/lib/AsmParser/LLParser.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/AsmParser/LLParser.h b/llvm/lib/AsmParser/LLParser.h
index 0039164cc7c..3a38159d800 100644
--- a/llvm/lib/AsmParser/LLParser.h
+++ b/llvm/lib/AsmParser/LLParser.h
@@ -160,11 +160,11 @@ namespace llvm {
FastMathFlags FMF;
while (true)
switch (Lex.getKind()) {
- case lltok::kw_fast: FMF.UnsafeAlgebra = true; Lex.Lex(); continue;
- case lltok::kw_nnan: FMF.NoNaNs = true; Lex.Lex(); continue;
- case lltok::kw_ninf: FMF.NoInfs = true; Lex.Lex(); continue;
- case lltok::kw_nsz: FMF.NoSignedZeros = true; Lex.Lex(); continue;
- case lltok::kw_arcp: FMF.AllowReciprocal = true; Lex.Lex(); continue;
+ case lltok::kw_fast: FMF.setUnsafeAlgebra(); Lex.Lex(); continue;
+ case lltok::kw_nnan: FMF.setNoNaNs(); Lex.Lex(); continue;
+ case lltok::kw_ninf: FMF.setNoInfs(); Lex.Lex(); continue;
+ case lltok::kw_nsz: FMF.setNoSignedZeros(); Lex.Lex(); continue;
+ case lltok::kw_arcp: FMF.setAllowReciprocal(); Lex.Lex(); continue;
default: return FMF;
}
return FMF;
OpenPOWER on IntegriCloud