diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-10-05 15:41:24 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-10-05 15:41:24 +0000 |
commit | 4a1bb8c4d708d5594e62c9ec7e25e273cae8a1ed (patch) | |
tree | d983cc66a40bbcfbd4db226ddbba373e0e6674ff /include/clang/Sema/Sema.h | |
parent | 90c121c8dbdcdd4a0a01d5fba3b398dbfc50b37c (diff) |
Register the __builtin_va_list_type node when we parse it, rather than
waiting until we think we need it: we didn't catch all of the places
where we actually needed it, and we probably wouldn't ever. Fixes a
C++ PCH crasher.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@115621 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Sema/Sema.h')
-rw-r--r-- | include/clang/Sema/Sema.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/clang/Sema/Sema.h b/include/clang/Sema/Sema.h index 3ae4346978..6cead4f28d 100644 --- a/include/clang/Sema/Sema.h +++ b/include/clang/Sema/Sema.h @@ -4253,8 +4253,6 @@ public: /// in the global scope. bool CheckObjCDeclScope(Decl *D); - void InitBuiltinVaListType(); - /// VerifyIntegerConstantExpression - verifies that an expression is an ICE, /// and reports the appropriate diagnostics. Returns false on success. /// Can optionally return the value of the expression. |