about summary refs log tree commit diff homepage
path: root/include
diff options
context:
space:
mode:
authorMicah Villmow <villmow@gmail.com>2012-10-08 16:50:13 +0000
committerMicah Villmow <villmow@gmail.com>2012-10-08 16:50:13 +0000
commit2c8039b3a2abf467c5eefa9fc8d1408766ab877d (patch)
tree3b04cb477da0d7de59eddc348a1a937e1c52fd04 /include
parentcb7a4c6c52563589ef7c832bd4c87390b3a3a919 (diff)
downloadklee-2c8039b3a2abf467c5eefa9fc8d1408766ab877d.tar.gz
Make the changes in r165394 be conditional on post LLVM 3.1 changes.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@165405 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/klee/Internal/Module/KModule.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/klee/Internal/Module/KModule.h b/include/klee/Internal/Module/KModule.h
index 322e6898..538d8e6e 100644
--- a/include/klee/Internal/Module/KModule.h
+++ b/include/klee/Internal/Module/KModule.h
@@ -22,7 +22,11 @@ namespace llvm {
   class Function;
   class Instruction;
   class Module;
+#if LLVM_VERSION_CODE <= LLVM_VERSION(3, 1)
+  class TargetData;
+#else
   class DataLayout;
+#endif
 }
 
 namespace klee {
@@ -80,7 +84,11 @@ namespace klee {
   class KModule {
   public:
     llvm::Module *module;
+#if LLVM_VERSION_CODE <= LLVM_VERSION(3, 1)
+    llvm::TargetData *targetData;
+#else
     llvm::DataLayout *targetData;
+#endif
     
     // Some useful functions to know the address of
     llvm::Function *dbgStopPointFn, *kleeMergeFn;