Skip to content
Snippets Groups Projects
Commit 84bb8d3f authored by Eric Christopher's avatar Eric Christopher
Browse files

Rename builtin_lang -> Langs to match the rest of the code a bit better.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@244126 91177308-0d34-0410-b5e6-96231b3b80d8
parent 82417e43
No related branches found
No related tags found
No related merge requests found
...@@ -51,7 +51,7 @@ enum ID { ...@@ -51,7 +51,7 @@ enum ID {
struct Info { struct Info {
const char *Name, *Type, *Attributes, *HeaderName; const char *Name, *Type, *Attributes, *HeaderName;
LanguageID builtin_lang; LanguageID Langs;
}; };
/// \brief Holds information about both target-independent and /// \brief Holds information about both target-independent and
......
...@@ -22,9 +22,12 @@ using namespace clang; ...@@ -22,9 +22,12 @@ using namespace clang;
static const Builtin::Info BuiltinInfo[] = { static const Builtin::Info BuiltinInfo[] = {
{ "not a builtin function", nullptr, nullptr, nullptr, ALL_LANGUAGES}, { "not a builtin function", nullptr, nullptr, nullptr, ALL_LANGUAGES},
#define BUILTIN(ID, TYPE, ATTRS) { #ID, TYPE, ATTRS, 0, ALL_LANGUAGES }, #define BUILTIN(ID, TYPE, ATTRS) { #ID, TYPE, ATTRS, 0, ALL_LANGUAGES },
#define LANGBUILTIN(ID, TYPE, ATTRS, BUILTIN_LANG) { #ID, TYPE, ATTRS, 0, BUILTIN_LANG }, #define LANGBUILTIN(ID, TYPE, ATTRS, LANGS) \
#define LIBBUILTIN(ID, TYPE, ATTRS, HEADER, BUILTIN_LANG) { #ID, TYPE, ATTRS, HEADER,\ { #ID, TYPE, ATTRS, 0, LANGS } \
BUILTIN_LANG }, ,
#define LIBBUILTIN(ID, TYPE, ATTRS, HEADER, LANGS) \
{ #ID, TYPE, ATTRS, HEADER, LANGS } \
,
#include "clang/Basic/Builtins.def" #include "clang/Basic/Builtins.def"
}; };
...@@ -53,12 +56,10 @@ bool Builtin::Context::BuiltinIsSupported(const Builtin::Info &BuiltinInfo, ...@@ -53,12 +56,10 @@ bool Builtin::Context::BuiltinIsSupported(const Builtin::Info &BuiltinInfo,
bool MathBuiltinsUnsupported = bool MathBuiltinsUnsupported =
LangOpts.NoMathBuiltin && BuiltinInfo.HeaderName && LangOpts.NoMathBuiltin && BuiltinInfo.HeaderName &&
llvm::StringRef(BuiltinInfo.HeaderName).equals("math.h"); llvm::StringRef(BuiltinInfo.HeaderName).equals("math.h");
bool GnuModeUnsupported = !LangOpts.GNUMode && bool GnuModeUnsupported = !LangOpts.GNUMode && (BuiltinInfo.Langs & GNU_LANG);
(BuiltinInfo.builtin_lang & GNU_LANG); bool MSModeUnsupported =
bool MSModeUnsupported = !LangOpts.MicrosoftExt && !LangOpts.MicrosoftExt && (BuiltinInfo.Langs & MS_LANG);
(BuiltinInfo.builtin_lang & MS_LANG); bool ObjCUnsupported = !LangOpts.ObjC1 && BuiltinInfo.Langs == OBJC_LANG;
bool ObjCUnsupported = !LangOpts.ObjC1 &&
BuiltinInfo.builtin_lang == OBJC_LANG;
return !BuiltinsUnsupported && !MathBuiltinsUnsupported && return !BuiltinsUnsupported && !MathBuiltinsUnsupported &&
!GnuModeUnsupported && !MSModeUnsupported && !ObjCUnsupported; !GnuModeUnsupported && !MSModeUnsupported && !ObjCUnsupported;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment