summaryrefslogtreecommitdiffstats
path: root/include/clang/Basic/Builtins.h
diff options
context:
space:
mode:
authorEli Bendersky <eliben@google.com>2013-07-11 16:53:04 +0000
committerEli Bendersky <eliben@google.com>2013-07-11 16:53:04 +0000
commit97a03cf921ccc16ef9d16d965a5ef28631090f6a (patch)
treee51029b241164175153f4449101ed3880b81635a /include/clang/Basic/Builtins.h
parentf92a509d870f05a0e26babd8072171957770649e (diff)
Simplify GetBuiltinNames by hoising the NoBuiltins argument out of it.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@186106 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/Builtins.h')
-rw-r--r--include/clang/Basic/Builtins.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/clang/Basic/Builtins.h b/include/clang/Basic/Builtins.h
index eb156519ae..ef8955c94b 100644
--- a/include/clang/Basic/Builtins.h
+++ b/include/clang/Basic/Builtins.h
@@ -75,9 +75,8 @@ public:
/// such.
void InitializeBuiltins(IdentifierTable &Table, const LangOptions& LangOpts);
- /// \brief Popular the vector with the names of all of the builtins.
- void GetBuiltinNames(SmallVectorImpl<const char *> &Names,
- bool NoBuiltins);
+ /// \brief Populate the vector with the names of all of the builtins.
+ void GetBuiltinNames(SmallVectorImpl<const char *> &Names);
/// \brief Return the identifier name for the specified builtin,
/// e.g. "__builtin_abs".