diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2013-01-02 11:56:33 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2013-01-02 11:56:33 +0000 |
commit | 005f27a0d39047acb7085e19a7b3d57c3be6ed41 (patch) | |
tree | 4349a7f1ffcdd3a3c4a7e3d742bb4131c5eac722 /llvm/examples/Kaleidoscope/Chapter3/toy.cpp | |
parent | 535d52c7ca390bdeab1b4f261942197d2b65ad93 (diff) | |
download | bcm5719-llvm-005f27a0d39047acb7085e19a7b3d57c3be6ed41.tar.gz bcm5719-llvm-005f27a0d39047acb7085e19a7b3d57c3be6ed41.zip |
Update the examples for the new header file locations.
Sorry for the fallout here, I forgot the examples aren't built by
default any more.
llvm-svn: 171371
Diffstat (limited to 'llvm/examples/Kaleidoscope/Chapter3/toy.cpp')
-rw-r--r-- | llvm/examples/Kaleidoscope/Chapter3/toy.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/examples/Kaleidoscope/Chapter3/toy.cpp b/llvm/examples/Kaleidoscope/Chapter3/toy.cpp index 6eeb7ac4045..48cfbe6decb 100644 --- a/llvm/examples/Kaleidoscope/Chapter3/toy.cpp +++ b/llvm/examples/Kaleidoscope/Chapter3/toy.cpp @@ -1,8 +1,8 @@ #include "llvm/Analysis/Verifier.h" -#include "llvm/DerivedTypes.h" -#include "llvm/IRBuilder.h" -#include "llvm/LLVMContext.h" -#include "llvm/Module.h" +#include "llvm/IR/DerivedTypes.h" +#include "llvm/IR/IRBuilder.h" +#include "llvm/IR/LLVMContext.h" +#include "llvm/IR/Module.h" #include <cstdio> #include <map> #include <string> |