diff options
author | Melanie Blower <melanie.blower@intel.com> | 2019-12-04 12:23:46 -0800 |
---|---|---|
committer | Melanie Blower <melanie.blower@intel.com> | 2019-12-05 03:48:04 -0800 |
commit | 7f9b5138470db1dc58f3bc05631284c653c9ed7a (patch) | |
tree | 6df6dcd5ce5f7d56fcef6e72ab2c3f287bce860e /clang/lib/Serialization | |
parent | c16f0b18c13e88fedaa510bc2442bb693a6230c8 (diff) | |
download | bcm5719-llvm-7f9b5138470db1dc58f3bc05631284c653c9ed7a.tar.gz bcm5719-llvm-7f9b5138470db1dc58f3bc05631284c653c9ed7a.zip |
Reapply af57dbf12e54 "Add support for options -frounding-math, ftrapping-math, -ffp-model=, and -ffp-exception-behavior="
Patch was reverted because https://bugs.llvm.org/show_bug.cgi?id=44048
The original patch is modified to set the strictfp IR attribute
explicitly in CodeGen instead of as a side effect of IRBuilder.
In the 2nd attempt to reapply there was a windows lit test fail, the
tests were fixed to use wildcard matching.
Differential Revision: https://reviews.llvm.org/D62731
Diffstat (limited to 'clang/lib/Serialization')
-rw-r--r-- | clang/lib/Serialization/ASTReaderDecl.cpp | 1 | ||||
-rw-r--r-- | clang/lib/Serialization/ASTWriterDecl.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/Serialization/ASTReaderDecl.cpp b/clang/lib/Serialization/ASTReaderDecl.cpp index 3f7a1ed7fd5..d989f46c4ab 100644 --- a/clang/lib/Serialization/ASTReaderDecl.cpp +++ b/clang/lib/Serialization/ASTReaderDecl.cpp @@ -886,6 +886,7 @@ void ASTDeclReader::VisitFunctionDecl(FunctionDecl *FD) { FD->ODRHash = Record.readInt(); FD->setHasODRHash(true); + FD->setUsesFPIntrin(Record.readInt()); switch ((FunctionDecl::TemplatedKind)Record.readInt()) { case FunctionDecl::TK_NonTemplate: diff --git a/clang/lib/Serialization/ASTWriterDecl.cpp b/clang/lib/Serialization/ASTWriterDecl.cpp index 51902a607ca..38eb64e52e4 100644 --- a/clang/lib/Serialization/ASTWriterDecl.cpp +++ b/clang/lib/Serialization/ASTWriterDecl.cpp @@ -559,6 +559,7 @@ void ASTDeclWriter::VisitFunctionDecl(FunctionDecl *D) { Record.AddSourceLocation(D->getEndLoc()); Record.push_back(D->getODRHash()); + Record.push_back(D->usesFPIntrin()); Record.push_back(D->getTemplatedKind()); switch (D->getTemplatedKind()) { |