about summary refs log tree commit diff homepage
path: root/include/klee/Internal/Module/KModule.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/klee/Internal/Module/KModule.h')
-rw-r--r--include/klee/Internal/Module/KModule.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/klee/Internal/Module/KModule.h b/include/klee/Internal/Module/KModule.h
index 76db4694..f0f20394 100644
--- a/include/klee/Internal/Module/KModule.h
+++ b/include/klee/Internal/Module/KModule.h
@@ -23,11 +23,7 @@ namespace llvm {
   class Function;
   class Instruction;
   class Module;
-#if LLVM_VERSION_CODE <= LLVM_VERSION(3, 1)
-  class TargetData;
-#else
   class DataLayout;
-#endif
 }
 
 namespace klee {
@@ -85,11 +81,7 @@ 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 *kleeMergeFn;