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/Kaleidoscope/Chapter3/toy.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/Kaleidoscope/Chapter3/toy.cpp')
-rw-r--r-- | llvm/examples/Kaleidoscope/Chapter3/toy.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/examples/Kaleidoscope/Chapter3/toy.cpp b/llvm/examples/Kaleidoscope/Chapter3/toy.cpp index c1e34b2f09a..6eeb7ac4045 100644 --- a/llvm/examples/Kaleidoscope/Chapter3/toy.cpp +++ b/llvm/examples/Kaleidoscope/Chapter3/toy.cpp @@ -1,11 +1,11 @@ +#include "llvm/Analysis/Verifier.h" #include "llvm/DerivedTypes.h" #include "llvm/IRBuilder.h" #include "llvm/LLVMContext.h" #include "llvm/Module.h" -#include "llvm/Analysis/Verifier.h" #include <cstdio> -#include <string> #include <map> +#include <string> #include <vector> using namespace llvm; |