Updated to latest LLVM. Major LLVM changes:

- Sema is now exported (and there was much rejoicing.)

 - Storage classes are now centrally defined.

Also fixed some bugs that the new LLVM picked up.

llvm-svn: 114622
This commit is contained in:
Sean Callanan
2010-09-23 03:01:22 +00:00
parent 002ad003a3
commit e2ef6e380b
16 changed files with 96 additions and 83 deletions

View File

@@ -15,9 +15,8 @@
#include "clang/AST/Expr.h"
#include "clang/AST/RecordLayout.h"
#include "clang/AST/Stmt.h"
#include "clang/Parse/Action.h"
#include "clang/Parse/Parser.h"
#include "clang/Parse/Scope.h"
#include "clang/Sema/Sema.h"
#include "llvm/Support/Casting.h"
#include "llvm/Support/raw_ostream.h"
#include "lldb/Core/Log.h"
@@ -111,7 +110,7 @@ ASTStructExtractor::ExtractFromTopLevelDecl(Decl* D)
if (m_ast_context &&
function_decl &&
!m_function.m_wrapper_function_name.compare(function_decl->getNameAsCString()))
!m_function.m_wrapper_function_name.compare(function_decl->getNameAsString().c_str()))
{
ExtractFromFunctionDecl(function_decl);
}