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 | cc8a94565ec2ff459dcee9ef34237fdcdfc69b3f (patch) | |
tree | 535f50ac6e4fb89c5bb6c127e11af38074c098cc /lib/Driver/Driver.cpp | |
parent | 14c598268ff7534d3753ae84eba9b8a81bf0bf8f (diff) |
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.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@150487 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Driver.cpp')
-rw-r--r-- | lib/Driver/Driver.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/Driver/Driver.cpp b/lib/Driver/Driver.cpp index 26ceb32e73..b494ed1239 100644 --- a/lib/Driver/Driver.cpp +++ b/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; |