diff options
author | Micah Villmow <villmow@gmail.com> | 2012-10-08 16:21:06 +0000 |
---|---|---|
committer | Micah Villmow <villmow@gmail.com> | 2012-10-08 16:21:06 +0000 |
commit | cb7a4c6c52563589ef7c832bd4c87390b3a3a919 (patch) | |
tree | 1e22135b8938a0c8942fbe9543a0c2e353fb96d7 /include | |
parent | 215c1587aab5fa94fd805fe8e0b5fbacc51f1c8e (diff) | |
download | klee-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 'include')
-rw-r--r-- | include/klee/Internal/Module/KModule.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/klee/Internal/Module/KModule.h b/include/klee/Internal/Module/KModule.h index 67723b3a..322e6898 100644 --- a/include/klee/Internal/Module/KModule.h +++ b/include/klee/Internal/Module/KModule.h @@ -22,7 +22,7 @@ namespace llvm { class Function; class Instruction; class Module; - class TargetData; + class DataLayout; } namespace klee { @@ -80,7 +80,7 @@ namespace klee { class KModule { public: llvm::Module *module; - llvm::TargetData *targetData; + llvm::DataLayout *targetData; // Some useful functions to know the address of llvm::Function *dbgStopPointFn, *kleeMergeFn; |