forked from OSchip/llvm-project
Updated to llvm/clang from July 2, 2010 at 8:00AM.
llvm-svn: 107494
This commit is contained in:
parent
96037187e5
commit
d2d60ce388
|
@ -435,7 +435,7 @@ public:
|
|||
/// Resolves user name and links in \a src_path, and writes the output
|
||||
/// to \a dst_path. Note if the path pointed to by \a src_path does not
|
||||
/// exist, the contents of \a src_path will be copied to \a dst_path
|
||||
/// unchanged.
|
||||
/// unchanged.
|
||||
///
|
||||
/// @param[in] src_path
|
||||
/// Input path to be resolved.
|
||||
|
|
|
@ -25,7 +25,7 @@ our @llvm_clang_slices; # paths to the single architecture static libraries (arc
|
|||
|
||||
our $llvm_configuration = $ENV{LLVM_CONFIGURATION};
|
||||
|
||||
our $llvm_revision = "'{2010-06-13T06:00}'";
|
||||
our $llvm_revision = "'{2010-07-02T08:00}'";
|
||||
our $llvm_source_dir = "$ENV{SRCROOT}";
|
||||
our $cc = "$ENV{DEVELOPER_BIN_DIR}/gcc-4.2";
|
||||
our $cxx = "$ENV{DEVELOPER_BIN_DIR}/g++-4.2";
|
||||
|
|
|
@ -24,10 +24,11 @@
|
|||
#include "clang/Basic/FileManager.h"
|
||||
#include "clang/Basic/TargetInfo.h"
|
||||
#include "clang/Basic/Version.h"
|
||||
#include "clang/Checker/FrontendActions.h"
|
||||
#include "clang/CodeGen/CodeGenAction.h"
|
||||
#include "clang/CodeGen/ModuleBuilder.h"
|
||||
#include "clang/Driver/CC1Options.h"
|
||||
#include "clang/Driver/OptTable.h"
|
||||
#include "clang/Frontend/CodeGenAction.h"
|
||||
#include "clang/Frontend/CompilerInstance.h"
|
||||
#include "clang/Frontend/CompilerInvocation.h"
|
||||
#include "clang/Frontend/FrontendActions.h"
|
||||
|
@ -37,6 +38,7 @@
|
|||
#include "clang/Frontend/TextDiagnosticPrinter.h"
|
||||
#include "clang/Frontend/VerifyDiagnosticsClient.h"
|
||||
#include "clang/Lex/Preprocessor.h"
|
||||
#include "clang/Rewrite/FrontendActions.h"
|
||||
#include "clang/Sema/ParseAST.h"
|
||||
#include "clang/Sema/SemaConsumer.h"
|
||||
#include "llvm/ExecutionEngine/ExecutionEngine.h"
|
||||
|
|
|
@ -11,15 +11,15 @@
|
|||
// C Includes
|
||||
// C++ Includes
|
||||
// Other libraries and framework includes
|
||||
#include "clang/Frontend/CodeGenAction.h"
|
||||
#include "llvm/ExecutionEngine/ExecutionEngine.h"
|
||||
#include "clang/Frontend/CompilerInstance.h"
|
||||
#include "clang/AST/ASTContext.h"
|
||||
#include "clang/AST/RecordLayout.h"
|
||||
#include "clang/CodeGen/CodeGenAction.h"
|
||||
#include "clang/CodeGen/ModuleBuilder.h"
|
||||
#include "clang/Frontend/CompilerInstance.h"
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
#include "llvm/ExecutionEngine/ExecutionEngine.h"
|
||||
#include "llvm/ExecutionEngine/JIT.h"
|
||||
#include "llvm/Module.h"
|
||||
#include "clang/CodeGen/ModuleBuilder.h"
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
|
||||
// Project includes
|
||||
#include "lldb/Expression/ClangFunction.h"
|
||||
|
|
Loading…
Reference in New Issue