From fd13129bdf7324b2e8181a653897269aaaecc4e8 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 5 Sep 2003 20:08:15 +0000 Subject: Reorder #includes to follow LLVM conventions git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8375 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/lli/lli.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tools') diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp index ebe618a..a4e75d8 100644 --- a/tools/lli/lli.cpp +++ b/tools/lli/lli.cpp @@ -9,15 +9,15 @@ // //===----------------------------------------------------------------------===// -#include "Support/CommandLine.h" -#include "Support/Debug.h" +#include "llvm/DerivedTypes.h" +#include "llvm/Module.h" +#include "llvm/Bytecode/Reader.h" #include "llvm/ExecutionEngine/ExecutionEngine.h" #include "llvm/ExecutionEngine/GenericValue.h" -#include "llvm/Bytecode/Reader.h" -#include "llvm/Module.h" #include "llvm/Target/TargetMachineImpls.h" -#include "llvm/DerivedTypes.h" #include "llvm/Target/TargetData.h" +#include "Support/CommandLine.h" +#include "Support/Debug.h" namespace { cl::opt -- cgit v1.1