ToolChains.cpp: Fixup r169260, clang/Config/config.h needs to be listed *last*, or...
authorNAKAMURA Takumi <geek4civic@gmail.com>
Tue, 4 Dec 2012 14:31:59 +0000 (14:31 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Tue, 4 Dec 2012 14:31:59 +0000 (14:31 +0000)
llvm-svn: 169268

clang/lib/Driver/ToolChains.cpp

index 1c72c7f..e036ee2 100644 (file)
@@ -7,10 +7,6 @@
 //
 //===----------------------------------------------------------------------===//
 
-// FIXME: This needs to be listed first until we fix the broken include guards
-// in these files and the LLVM config.h files.
-#include "clang/Config/config.h" // for GCC_INSTALL_PREFIX
-
 #include "ToolChains.h"
 #include "SanitizerArgs.h"
 #include "clang/Basic/ObjCRuntime.h"
 #include "llvm/Support/Path.h"
 #include "llvm/Support/raw_ostream.h"
 #include "llvm/Support/system_error.h"
+
+// FIXME: This needs to be listed last until we fix the broken include guards
+// in these files and the LLVM config.h files.
+#include "clang/Config/config.h" // for GCC_INSTALL_PREFIX
+
 #include <cstdlib> // ::getenv
 
 using namespace clang::driver;