This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from dad9866 [clang-format] fix crash in NamespaceEndCommentsFixer (PR32438) new a51d8c8 Set FMF for -ffp-contract=fast new 6abfe5c Add #pragma clang fp
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: docs/LanguageExtensions.rst | 33 +++++ include/clang/Basic/DiagnosticParseKinds.td | 10 ++ include/clang/Basic/TokenKinds.def | 2 + include/clang/Parse/Parser.h | 5 + include/clang/Sema/Sema.h | 5 +- lib/CodeGen/CGExprScalar.cpp | 28 +++- lib/Parse/ParsePragma.cpp | 151 ++++++++++++++++++++- lib/Parse/ParseStmt.cpp | 9 ++ lib/Parse/Parser.cpp | 3 + lib/Sema/SemaAttr.cpp | 17 +-- test/CodeGen/ffp-contract-fast-option.cpp | 29 ++++ test/CodeGen/fp-contract-fast-pragma.cpp | 69 ++++++++++ ...ntract-pragma.cpp => fp-contract-on-pragma.cpp} | 40 +++--- test/Parser/cxx11-stmt-attributes.cpp | 1 + test/Parser/pragma-fp.cpp | 64 +++++++++ 15 files changed, 429 insertions(+), 37 deletions(-) create mode 100644 test/CodeGen/ffp-contract-fast-option.cpp create mode 100644 test/CodeGen/fp-contract-fast-pragma.cpp copy test/CodeGen/{fp-contract-pragma.cpp => fp-contract-on-pragma.cpp} (67%) create mode 100644 test/Parser/pragma-fp.cpp