diff options
author | Chris Lattner <sabre@nondot.org> | 2008-02-06 02:01:47 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-02-06 02:01:47 +0000 |
commit | adf1f51fc592ea4eeea759abc8263a4cfbe28568 (patch) | |
tree | bf0dee192f9edfcc90103ac47b2d9e8be81f9765 /clang/Driver/clang.cpp | |
parent | b5eda6253b28dd2669bda220b455d05c5e99796a (diff) | |
download | bcm5719-llvm-adf1f51fc592ea4eeea759abc8263a4cfbe28568.tar.gz bcm5719-llvm-adf1f51fc592ea4eeea759abc8263a4cfbe28568.zip |
move the codegen ASTConsumer out of the driver into libcodegen,
eliminating a bunch of forwarding methods and generally
simplifying things.
llvm-svn: 46792
Diffstat (limited to 'clang/Driver/clang.cpp')
-rw-r--r-- | clang/Driver/clang.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/Driver/clang.cpp b/clang/Driver/clang.cpp index 6e76a4a0cd2..01ef28ff38e 100644 --- a/clang/Driver/clang.cpp +++ b/clang/Driver/clang.cpp @@ -27,6 +27,7 @@ #include "TextDiagnosticBuffer.h" #include "TextDiagnosticPrinter.h" #include "clang/AST/TranslationUnit.h" +#include "clang/CodeGen/ModuleBuilder.h" #include "clang/Sema/ParseAST.h" #include "clang/AST/ASTConsumer.h" #include "clang/Parse/Parser.h" |