diff options
author | Micah Villmow <villmow@gmail.com> | 2012-10-08 16:50:13 +0000 |
---|---|---|
committer | Micah Villmow <villmow@gmail.com> | 2012-10-08 16:50:13 +0000 |
commit | 2c8039b3a2abf467c5eefa9fc8d1408766ab877d (patch) | |
tree | 3b04cb477da0d7de59eddc348a1a937e1c52fd04 /lib/Core/Executor.h | |
parent | cb7a4c6c52563589ef7c832bd4c87390b3a3a919 (diff) | |
download | klee-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 'lib/Core/Executor.h')
-rw-r--r-- | lib/Core/Executor.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Core/Executor.h b/lib/Core/Executor.h index d47a3364..7e6b79cd 100644 --- a/lib/Core/Executor.h +++ b/lib/Core/Executor.h @@ -37,7 +37,11 @@ namespace llvm { class Function; class GlobalValue; class Instruction; +#if LLVM_VERSION_CODE <= LLVM_VERSION(3, 1) + class TargetData; +#else class DataLayout; +#endif class Twine; class Value; } |