diff options
-rw-r--r-- | lib/Driver/Driver.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Driver/Driver.cpp b/lib/Driver/Driver.cpp index cea24fdb15..a6410d8bb8 100644 --- a/lib/Driver/Driver.cpp +++ b/lib/Driver/Driver.cpp @@ -11,7 +11,6 @@ #include "InputInfo.h" #include "ToolChains.h" #include "clang/Basic/Version.h" -#include "clang/Config/config.h" #include "clang/Driver/Action.h" #include "clang/Driver/Arg.h" #include "clang/Driver/ArgList.h" @@ -34,6 +33,10 @@ #include "llvm/Support/raw_ostream.h" #include <map> +// FIXME: It would prevent to include llvm-config.h +// if it were included before system_error.h. +#include "clang/Config/config.h" + using namespace clang::driver; using namespace clang; |