about summary refs log tree commit diff homepage
path: root/lib/Module/KModule.cpp
diff options
context:
space:
mode:
authorMicah Villmow <villmow@gmail.com>2012-10-08 16:21:06 +0000
committerMicah Villmow <villmow@gmail.com>2012-10-08 16:21:06 +0000
commitcb7a4c6c52563589ef7c832bd4c87390b3a3a919 (patch)
tree1e22135b8938a0c8942fbe9543a0c2e353fb96d7 /lib/Module/KModule.cpp
parent215c1587aab5fa94fd805fe8e0b5fbacc51f1c8e (diff)
downloadklee-cb7a4c6c52563589ef7c832bd4c87390b3a3a919.tar.gz
Move TargetData to DataLayout.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@165394 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Module/KModule.cpp')
-rw-r--r--lib/Module/KModule.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Module/KModule.cpp b/lib/Module/KModule.cpp
index a569242e..eeaa10cf 100644
--- a/lib/Module/KModule.cpp
+++ b/lib/Module/KModule.cpp
@@ -40,7 +40,7 @@
 #else
 #include "llvm/Support/Path.h"
 #endif
-#include "llvm/Target/TargetData.h"
+#include "llvm/Target/DataLayout.h"
 #include "llvm/Transforms/Scalar.h"
 
 #include <sstream>
@@ -90,7 +90,7 @@ namespace {
 
 KModule::KModule(Module *_module) 
   : module(_module),
-    targetData(new TargetData(module)),
+    targetData(new DataLayout(module)),
     dbgStopPointFn(0),
     kleeMergeFn(0),
     infos(0),