From: Misha Brukman Date: Wed, 17 Dec 2003 22:06:28 +0000 (+0000) Subject: Reordered #includes. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=3d0ad411a5f16e176f9ece702d08774fbf1a4d8e;p=oota-llvm.git Reordered #includes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10502 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/SparcV9/SparcV9AsmPrinter.cpp b/lib/Target/SparcV9/SparcV9AsmPrinter.cpp index ec190ca7cf9..fa749b8e1fd 100644 --- a/lib/Target/SparcV9/SparcV9AsmPrinter.cpp +++ b/lib/Target/SparcV9/SparcV9AsmPrinter.cpp @@ -18,16 +18,16 @@ // //===----------------------------------------------------------------------===// -#include "llvm/CodeGen/MachineInstr.h" -#include "llvm/CodeGen/MachineConstantPool.h" -#include "llvm/CodeGen/MachineFunction.h" -#include "llvm/CodeGen/MachineFunctionInfo.h" #include "llvm/Constants.h" #include "llvm/DerivedTypes.h" #include "llvm/Module.h" -#include "llvm/SlotCalculator.h" #include "llvm/Pass.h" +#include "llvm/SlotCalculator.h" #include "llvm/Assembly/Writer.h" +#include "llvm/CodeGen/MachineConstantPool.h" +#include "llvm/CodeGen/MachineFunction.h" +#include "llvm/CodeGen/MachineFunctionInfo.h" +#include "llvm/CodeGen/MachineInstr.h" #include "Support/StringExtras.h" #include "Support/Statistic.h" #include "SparcInternals.h"