diff options
author | Melanie Blower <melanie.blower@intel.com> | 2021-07-20 16:01:51 -0400 |
---|---|---|
committer | Melanie Blower <melanie.blower@intel.com> | 2021-07-20 16:02:09 -0400 |
commit | ce8024e8ff76e7be8b9ffa1a39d1dc9310bf74c7 (patch) | |
tree | 2df5effec4c76736b2c1eb5b2ca9a2211bffed92 /clang/lib/Frontend/CompilerInvocation.cpp | |
parent | 6bf0f6a4f7d976a54ff59de4ef1c543ad2df9ff0 (diff) | |
download | llvm-ce8024e8ff76e7be8b9ffa1a39d1dc9310bf74c7.zip llvm-ce8024e8ff76e7be8b9ffa1a39d1dc9310bf74c7.tar.gz llvm-ce8024e8ff76e7be8b9ffa1a39d1dc9310bf74c7.tar.bz2 |
[CLANG][PATCH][FPEnv] Add support for option -ffp-eval-method and extend #pragma float_control similarly
The Intel compiler ICC supports the option "-fp-model=(source|double|extended)"
which causes the compiler to use a wider type for intermediate floating point
calculations. Also supported is a way to embed this effect in the source
program with #pragma float_control(source|double|extended).
This patch extends pragma float_control syntax, and also adds support
for a new floating point option "-ffp-eval-method=(source|double|extended)".
source: intermediate results use source precision
double: intermediate results use double precision
extended: intermediate results use extended precision
Reviewed By: Aaron Ballman
Differential Revision: https://reviews.llvm.org/D93769
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index 2c696b5..4c266f5 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -4239,8 +4239,13 @@ static bool ParsePreprocessorArgs(PreprocessorOptions &Opts, ArgList &Args, // Always avoid lexing editor placeholders when we're just running the // preprocessor as we never want to emit the // "editor placeholder in source file" error in PP only mode. - if (isStrictlyPreprocessorAction(Action)) + // Certain predefined macros which depend upon semantic processing, + // for example __FLT_EVAL_METHOD__, are not expanded in PP mode, they + // appear in the preprocessed output as an unexpanded macro name. + if (isStrictlyPreprocessorAction(Action)) { Opts.LexEditorPlaceholders = false; + Opts.LexExpandSpecialBuiltins = false; + } return Diags.getNumErrors() == NumErrorsBefore; } |