diff options
author | Julian Büning <julian.buening@rwth-aachen.de> | 2018-11-04 11:34:10 +0100 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2019-03-05 15:15:39 +0000 |
commit | 7e33d5cb292c88ae10f4a0ffa86c498168fbe16a (patch) | |
tree | 769f3ff2ba656810198fe7a4416058c68f6096f0 /include | |
parent | d5de3df2c7e481426c39220072b42dfd307a3526 (diff) | |
download | klee-7e33d5cb292c88ae10f4a0ffa86c498168fbe16a.tar.gz |
workaround for LLVM PR39177
provides a workaround for LLVM bug PR39177, which affects LLVM versions 3.9 - 7.0.0: https://bugs.llvm.org/show_bug.cgi?id=39177 This commit is intended to be reverted once support for LLVM versions <= 7 is dropped from KLEE.
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/Config/config.h.cmin | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/klee/Config/config.h.cmin b/include/klee/Config/config.h.cmin index 0a5811b7..a7890fe7 100644 --- a/include/klee/Config/config.h.cmin +++ b/include/klee/Config/config.h.cmin @@ -80,6 +80,9 @@ /* Define to the version of this package. */ #cmakedefine PACKAGE_VERSION @PACKAGE_VERSION@ +/* Use Workaround for LLVM PR39177 (affecting LLVM 3.9 - 7.0.0) */ +#cmakedefine USE_WORKAROUND_LLVM_PR39177 @USE_WORKAROUND_LLVM_PR39177@ + /* klee-uclibc is supported */ #cmakedefine SUPPORT_KLEE_UCLIBC @SUPPORT_KLEE_UCLIBC@ |