diff options
author | Dylan Noblesmith <nobled@dreamwidth.org> | 2012-02-14 15:54:49 +0000 |
---|---|---|
committer | Dylan Noblesmith <nobled@dreamwidth.org> | 2012-02-14 15:54:49 +0000 |
commit | 4d9cbffbe2cfa22013e84575375d4823fc817cf2 (patch) | |
tree | 06716b8b622332e47206b2ea78675bb0263e024b /clang/lib/Driver/Driver.cpp | |
parent | 1deda29598f7e223ce7546b5a7c95120160bbe9d (diff) | |
download | bcm5719-llvm-4d9cbffbe2cfa22013e84575375d4823fc817cf2.tar.gz bcm5719-llvm-4d9cbffbe2cfa22013e84575375d4823fc817cf2.zip |
include clang's config.h unconditionally (v2)
And remove HAVE_CLANG_CONFIG_H, now that the header is generated
in the autoconf build, too.
Reverts r149571/restores r149504, now that config.h is generated
correctly by LLVM's configure in all build configurations.
llvm-svn: 150487
Diffstat (limited to 'clang/lib/Driver/Driver.cpp')
-rw-r--r-- | clang/lib/Driver/Driver.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/clang/lib/Driver/Driver.cpp b/clang/lib/Driver/Driver.cpp index 26ceb32e73e..b494ed12396 100644 --- a/clang/lib/Driver/Driver.cpp +++ b/clang/lib/Driver/Driver.cpp @@ -36,13 +36,10 @@ #include "InputInfo.h" #include "ToolChains.h" -#ifdef HAVE_CLANG_CONFIG_H -# include "clang/Config/config.h" -#endif -#include "llvm/Config/config.h" - #include <map> +#include "clang/Config/config.h" + using namespace clang::driver; using namespace clang; |