diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2013-01-02 12:20:07 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2013-01-02 12:20:07 +0000 |
commit | 1e157587fe232ddc3a5824854f7b0e2b3660ea25 (patch) | |
tree | 0cb6720694b0a9919107e7b7851b8e9f345d873e /lldb/source/Expression/IRInterpreter.cpp | |
parent | db25c6cf8e9ce8ade3a7f2d2be886ba7409f4cce (diff) | |
download | bcm5719-llvm-1e157587fe232ddc3a5824854f7b0e2b3660ea25.tar.gz bcm5719-llvm-1e157587fe232ddc3a5824854f7b0e2b3660ea25.zip |
Rewrite #includes for llvm/Foo.h to llvm/IR/Foo.h as appropriate to reflect the
migration in r171366.
I don't know anything about lldb, but a force run of the build bot indicated it
would need this patch. I'll try to watch the build bot to get it green.
llvm-svn: 171374
Diffstat (limited to 'lldb/source/Expression/IRInterpreter.cpp')
-rw-r--r-- | lldb/source/Expression/IRInterpreter.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lldb/source/Expression/IRInterpreter.cpp b/lldb/source/Expression/IRInterpreter.cpp index 5fddc5c327b..f39d13522a7 100644 --- a/lldb/source/Expression/IRInterpreter.cpp +++ b/lldb/source/Expression/IRInterpreter.cpp @@ -15,12 +15,12 @@ #include "lldb/Expression/IRForTarget.h" #include "lldb/Expression/IRInterpreter.h" -#include "llvm/Constants.h" -#include "llvm/Function.h" -#include "llvm/Instructions.h" -#include "llvm/Module.h" +#include "llvm/IR/Constants.h" +#include "llvm/IR/Function.h" +#include "llvm/IR/Instructions.h" +#include "llvm/IR/Module.h" #include "llvm/Support/raw_ostream.h" -#include "llvm/DataLayout.h" +#include "llvm/IR/DataLayout.h" #include <map> |