Fix #include order
authorChris Lattner <sabre@nondot.org>
Thu, 27 Oct 2005 16:34:00 +0000 (16:34 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 27 Oct 2005 16:34:00 +0000 (16:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24044 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Utils/Local.cpp

index d82b278f402cb51502960ae616bdef9d0452d36d..49b871a98374300579a9569aaaa76f34aeddf861 100644 (file)
 //
 //===----------------------------------------------------------------------===//
 
-#include "llvm/Analysis/ConstantFolding.h"
 #include "llvm/Transforms/Utils/Local.h"
 #include "llvm/Constants.h"
 #include "llvm/DerivedTypes.h"
 #include "llvm/Instructions.h"
 #include "llvm/Intrinsics.h"
+#include "llvm/Analysis/ConstantFolding.h"
 #include "llvm/Support/GetElementPtrTypeIterator.h"
 #include "llvm/Support/MathExtras.h"
 #include <cerrno>