aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Support
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-12-08 19:00:03 +0000
committerChris Lattner <sabre@nondot.org>2007-12-08 19:00:03 +0000
commit36d26c201f39c63ca440b74e5b317ae0039c0414 (patch)
treefec68248197dd3fea51ea4af4cf0b2290c754a44 /lib/Support
parent39f207e720705703b780d5b69f3cb8e758f3da27 (diff)
downloadexternal_llvm-36d26c201f39c63ca440b74e5b317ae0039c0414.zip
external_llvm-36d26c201f39c63ca440b74e5b317ae0039c0414.tar.gz
external_llvm-36d26c201f39c63ca440b74e5b317ae0039c0414.tar.bz2
proper #include order.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44707 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r--lib/Support/APFloat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/APFloat.cpp b/lib/Support/APFloat.cpp
index 5d2146d..66dd24e 100644
--- a/lib/Support/APFloat.cpp
+++ b/lib/Support/APFloat.cpp
@@ -12,9 +12,9 @@
//
//===----------------------------------------------------------------------===//
+#include "llvm/ADT/APFloat.h"
#include <cassert>
#include <cstring>
-#include "llvm/ADT/APFloat.h"
#include "llvm/Support/MathExtras.h"
using namespace llvm;