From bf94a1e22a20faf34c3f30b5503a2d2bbb8106ba Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Thu, 29 Apr 2004 04:04:47 +0000 Subject: [PATCH] Reorder #includes as per style guide. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13263 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/CFGPrinter.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Analysis/CFGPrinter.cpp b/lib/Analysis/CFGPrinter.cpp index 3423e8be78c..9530f5695ab 100644 --- a/lib/Analysis/CFGPrinter.cpp +++ b/lib/Analysis/CFGPrinter.cpp @@ -17,13 +17,13 @@ // //===----------------------------------------------------------------------===// -#include "Support/GraphWriter.h" -#include "llvm/Pass.h" #include "llvm/Function.h" #include "llvm/iTerminators.h" -#include "llvm/Assembly/Writer.h" +#include "llvm/Pass.h" #include "llvm/Analysis/CFGPrinter.h" +#include "llvm/Assembly/Writer.h" #include "llvm/Support/CFG.h" +#include "Support/GraphWriter.h" #include #include using namespace llvm; -- 2.34.1