summaryrefslogtreecommitdiff
path: root/lib/IR/GCOV.cpp
diff options
context:
space:
mode:
authorJustin Bogner <mail@justinbogner.com>2014-02-04 21:03:17 +0000
committerJustin Bogner <mail@justinbogner.com>2014-02-04 21:03:17 +0000
commitd1cf804de3a28e002754bab012ed4557a9f48dd2 (patch)
tree7fb30f0607eb9dc78239e85c269c059151f98dc6 /lib/IR/GCOV.cpp
parentfb0ad6bd15076f0837bfe559c552b96fd4d9ec44 (diff)
downloadllvm-d1cf804de3a28e002754bab012ed4557a9f48dd2.tar.gz
llvm-d1cf804de3a28e002754bab012ed4557a9f48dd2.tar.bz2
llvm-d1cf804de3a28e002754bab012ed4557a9f48dd2.tar.xz
llvm-cov: Fix include order in GCOV.cpp
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200796 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/IR/GCOV.cpp')
-rw-r--r--lib/IR/GCOV.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/IR/GCOV.cpp b/lib/IR/GCOV.cpp
index 45ef78e078..01759ca96b 100644
--- a/lib/IR/GCOV.cpp
+++ b/lib/IR/GCOV.cpp
@@ -12,12 +12,12 @@
//
//===----------------------------------------------------------------------===//
-#include "llvm/Support/Debug.h"
+#include "llvm/Support/GCOV.h"
#include "llvm/ADT/OwningPtr.h"
#include "llvm/ADT/STLExtras.h"
-#include "llvm/Support/Format.h"
+#include "llvm/Support/Debug.h"
#include "llvm/Support/FileSystem.h"
-#include "llvm/Support/GCOV.h"
+#include "llvm/Support/Format.h"
#include "llvm/Support/MemoryObject.h"
#include "llvm/Support/Path.h"
#include "llvm/Support/system_error.h"