diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-11-05 23:58:27 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-11-05 23:58:27 +0000 |
commit | c7be10245e78bf38694b26f289880edefb9f16e9 (patch) | |
tree | 2e56a05550ccb3fa371e14bbe188ac404b1d4cd7 /lib/Parse/ParseAST.cpp | |
parent | 3043175274899e086c8664fe64c8fb4b9eacb733 (diff) |
Have the parser initialize Sema before it consumes the first
token. This is important because the first token could actually be
after an #include that triggers a module import, which might use
either Sema or the AST consumer before it would have been initialized.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@167423 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/ParseAST.cpp')
-rw-r--r-- | lib/Parse/ParseAST.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Parse/ParseAST.cpp b/lib/Parse/ParseAST.cpp index bd4f859521..7d68e1f37e 100644 --- a/lib/Parse/ParseAST.cpp +++ b/lib/Parse/ParseAST.cpp @@ -78,7 +78,6 @@ void clang::ParseAST(Sema &S, bool PrintStats, bool SkipFunctionBodies) { S.getPreprocessor().EnterMainSourceFile(); P.Initialize(); - S.Initialize(); // C11 6.9p1 says translation units must have at least one top-level // declaration. C++ doesn't have this restriction. We also don't want to |