diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-12-04 10:16:57 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-12-04 10:16:57 +0000 |
commit | 605e30e93cea54655f0dfb0a6eb4ff0d48353f4f (patch) | |
tree | 029e11f661b7090305993e33bcc7394759c3f181 /llvm/examples/Fibonacci/fibonacci.cpp | |
parent | c5c675d203fa626f77becbd4d42d8b9c91ffc985 (diff) | |
download | bcm5719-llvm-605e30e93cea54655f0dfb0a6eb4ff0d48353f4f.tar.gz bcm5719-llvm-605e30e93cea54655f0dfb0a6eb4ff0d48353f4f.zip |
Sort the #include lines of the examples/... tree.
llvm-svn: 169249
Diffstat (limited to 'llvm/examples/Fibonacci/fibonacci.cpp')
-rw-r--r-- | llvm/examples/Fibonacci/fibonacci.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/llvm/examples/Fibonacci/fibonacci.cpp b/llvm/examples/Fibonacci/fibonacci.cpp index 417ad6f4b60..9d21d24c76a 100644 --- a/llvm/examples/Fibonacci/fibonacci.cpp +++ b/llvm/examples/Fibonacci/fibonacci.cpp @@ -23,17 +23,17 @@ // //===----------------------------------------------------------------------===// -#include "llvm/LLVMContext.h" -#include "llvm/Module.h" -#include "llvm/DerivedTypes.h" -#include "llvm/Constants.h" -#include "llvm/Instructions.h" #include "llvm/Analysis/Verifier.h" -#include "llvm/ExecutionEngine/JIT.h" -#include "llvm/ExecutionEngine/Interpreter.h" +#include "llvm/Constants.h" +#include "llvm/DerivedTypes.h" #include "llvm/ExecutionEngine/GenericValue.h" -#include "llvm/Support/raw_ostream.h" +#include "llvm/ExecutionEngine/Interpreter.h" +#include "llvm/ExecutionEngine/JIT.h" +#include "llvm/Instructions.h" +#include "llvm/LLVMContext.h" +#include "llvm/Module.h" #include "llvm/Support/TargetSelect.h" +#include "llvm/Support/raw_ostream.h" using namespace llvm; static Function *CreateFibFunction(Module *M, LLVMContext &Context) { |