diff options
author | Micah Villmow <villmow@gmail.com> | 2012-10-08 16:37:04 +0000 |
---|---|---|
committer | Micah Villmow <villmow@gmail.com> | 2012-10-08 16:37:04 +0000 |
commit | 2b4b44e0d2e95fc695eafcc4d192fe1ae261e01e (patch) | |
tree | 85bd2883b9b7755da7d0c0ffcd500a38e87f4e0f /examples/ExceptionDemo | |
parent | c1054710ca416761077e82ebb0a4c2364a5727c0 (diff) | |
download | external_llvm-2b4b44e0d2e95fc695eafcc4d192fe1ae261e01e.zip external_llvm-2b4b44e0d2e95fc695eafcc4d192fe1ae261e01e.tar.gz external_llvm-2b4b44e0d2e95fc695eafcc4d192fe1ae261e01e.tar.bz2 |
Move TargetData to DataLayout.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165401 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples/ExceptionDemo')
-rw-r--r-- | examples/ExceptionDemo/ExceptionDemo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/ExceptionDemo/ExceptionDemo.cpp b/examples/ExceptionDemo/ExceptionDemo.cpp index 6dbd662..56d4d81 100644 --- a/examples/ExceptionDemo/ExceptionDemo.cpp +++ b/examples/ExceptionDemo/ExceptionDemo.cpp @@ -57,7 +57,7 @@ #include "llvm/PassManager.h" #include "llvm/Intrinsics.h" #include "llvm/Analysis/Verifier.h" -#include "llvm/Target/TargetData.h" +#include "llvm/DataLayout.h" #include "llvm/Target/TargetOptions.h" #include "llvm/Transforms/Scalar.h" #include "llvm/Support/Dwarf.h" @@ -1945,7 +1945,7 @@ int main(int argc, char *argv[]) { // Set up the optimizer pipeline. // Start with registering info about how the // target lays out data structures. - fpm.add(new llvm::TargetData(*executionEngine->getTargetData())); + fpm.add(new llvm::DataLayout(*executionEngine->getDataLayout())); // Optimizations turned on #ifdef ADD_OPT_PASSES |