[PATCH] D146148: Float_t and double_t types shouldn't be modified by #pragma clang fp eval_method
Zahira Ammarguellat via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Jun 14 06:34:25 PDT 2023
zahiraam marked an inline comment as done.
zahiraam added inline comments.
================
Comment at: clang/lib/Basic/Builtins.cpp:33
static constexpr Builtin::Info BuiltinInfo[] = {
- {"not a builtin function", nullptr, nullptr, nullptr, HeaderDesc::NO_HEADER,
+#define INTERESTING_IDENTIFIER(ID) \
+ {#ID, nullptr, nullptr, nullptr, HeaderDesc::NO_HEADER, ALL_LANGUAGES},
----------------
>From your comment in Builtin.h: "You shouldn't muddle this into Builtin::ID."
This means this shouldn't happen here. It should be done in IdentiferTable::AddKeywords as I had done previously?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D146148/new/
https://reviews.llvm.org/D146148
More information about the cfe-commits
mailing list