summaryrefslogtreecommitdiff
path: root/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
commit1638b839090a35adcd5a4b4cc0a649352276e703 (patch)
tree75ebe44245b37a5d6355fee63d6d7b0216bcf4f6 /lib/AsmParser
parent880166684e5af0f5b4bfe26870b9f7813e537354 (diff)
downloadllvm-1638b839090a35adcd5a4b4cc0a649352276e703.tar.gz
llvm-1638b839090a35adcd5a4b4cc0a649352276e703.tar.bz2
llvm-1638b839090a35adcd5a4b4cc0a649352276e703.tar.xz
Reorganize FastMathFlags to be a wrapper around unsigned, and streamline some interfaces.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169712 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser')
-rw-r--r--lib/AsmParser/LLParser.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/AsmParser/LLParser.h b/lib/AsmParser/LLParser.h
index 0039164cc7..3a38159d80 100644
--- a/lib/AsmParser/LLParser.h
+++ b/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;