summaryrefslogtreecommitdiff
path: root/unittests/ADT/PostOrderIteratorTest.cpp
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2017-06-06 11:06:56 +0000
committerChandler Carruth <chandlerc@gmail.com>2017-06-06 11:06:56 +0000
commit3c0d60785cd10f45fe4ab59ab4d02ffe9ad9d33e (patch)
treeaa00c8b24af5b34386bbed30b5cea97e361fd35a /unittests/ADT/PostOrderIteratorTest.cpp
parent9bea4232dd8316373ca3be3ca71a2a645927ef7f (diff)
Re-sort #include lines for unittests. This uses a slightly modified
clang-format (https://reviews.llvm.org/D33932) to keep primary headers at the top and handle new utility headers like 'gmock' consistently with other utility headers. No other change was made. I did no manual edits, all of this is clang-format. This should allow other changes to have more clear and focused diffs, and is especially motivated by moving some headers into more focused libraries. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@304786 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/ADT/PostOrderIteratorTest.cpp')
-rw-r--r--unittests/ADT/PostOrderIteratorTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/ADT/PostOrderIteratorTest.cpp b/unittests/ADT/PostOrderIteratorTest.cpp
index 17b8c4d842d..20c938e8932 100644
--- a/unittests/ADT/PostOrderIteratorTest.cpp
+++ b/unittests/ADT/PostOrderIteratorTest.cpp
@@ -6,10 +6,10 @@
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
-#include "gtest/gtest.h"
#include "llvm/ADT/PostOrderIterator.h"
#include "llvm/IR/BasicBlock.h"
#include "llvm/IR/CFG.h"
+#include "gtest/gtest.h"
using namespace llvm;
namespace {