diff options
author | Julian Büning <julian.buening@rwth-aachen.de> | 2019-03-20 22:01:00 +0100 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2019-03-21 12:46:01 +0000 |
commit | 9767a37f9e8a743fa81629510346cb0a5a3a7900 (patch) | |
tree | bc49e16925582e41ee51cacc35c4f7bcafd8860f /scripts/build/patches | |
parent | eee440835b857a7cb68b72f4af4d22eaf19e1d76 (diff) | |
download | klee-9767a37f9e8a743fa81629510346cb0a5a3a7900.tar.gz |
drop support for LLVM <= 3.7
Diffstat (limited to 'scripts/build/patches')
-rw-r--r-- | scripts/build/patches/llvm35.patch | 14 | ||||
-rw-r--r-- | scripts/build/patches/llvm36.patch | 39 |
2 files changed, 0 insertions, 53 deletions
diff --git a/scripts/build/patches/llvm35.patch b/scripts/build/patches/llvm35.patch deleted file mode 100644 index 47744b91..00000000 --- a/scripts/build/patches/llvm35.patch +++ /dev/null @@ -1,14 +0,0 @@ -*** include/llvm/ADT/IntrusiveRefCntPtr.h 2014-07-06 00:20:59.000000000 +0200 ---- include/llvm/ADT/IntrusiveRefCntPtr_new.h 2016-06-21 10:04:15.610143165 +0200 -*************** -*** 154,159 **** ---- 154,162 ---- - } - - template <class X> -+ friend class IntrusiveRefCntPtr; -+ -+ template <class X> - IntrusiveRefCntPtr(IntrusiveRefCntPtr<X>&& S) : Obj(S.get()) { - S.Obj = 0; - } diff --git a/scripts/build/patches/llvm36.patch b/scripts/build/patches/llvm36.patch deleted file mode 100644 index b5b84b09..00000000 --- a/scripts/build/patches/llvm36.patch +++ /dev/null @@ -1,39 +0,0 @@ -diff --git include/llvm/IR/ValueMap.h include/llvm/IR/ValueMap.h -index f2ea405f..a1ab2a50 100644 ---- include/llvm/IR/ValueMap.h -+++ include/llvm/IR/ValueMap.h -@@ -104 +104 @@ public: -- bool hasMD() const { return MDMap; } -+ bool hasMD() const { return bool(MDMap); } -diff --git projects/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc projects/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc -index 0e776b90..5088f2d0 100644 ---- projects/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc -+++ projects/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc -@@ -588,2 +588 @@ uptr internal_prctl(int option, uptr arg2, uptr arg3, uptr arg4, uptr arg5) { --uptr internal_sigaltstack(const struct sigaltstack *ss, -- struct sigaltstack *oss) { -+uptr internal_sigaltstack(const void *ss, void *oss) { -diff --git projects/compiler-rt/lib/sanitizer_common/sanitizer_linux.h projects/compiler-rt/lib/sanitizer_common/sanitizer_linux.h -index 3013c25f..d7d4db89 100644 ---- projects/compiler-rt/lib/sanitizer_common/sanitizer_linux.h -+++ projects/compiler-rt/lib/sanitizer_common/sanitizer_linux.h -@@ -23 +22,0 @@ struct link_map; // Opaque type returned by dlopen(). --struct sigaltstack; -@@ -32,2 +31 @@ uptr internal_getdents(fd_t fd, struct linux_dirent *dirp, unsigned int count); --uptr internal_sigaltstack(const struct sigaltstack* ss, -- struct sigaltstack* oss); -+uptr internal_sigaltstack(const void* ss, void* oss); -diff --git projects/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc projects/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc -index d20b5248..33894054 100644 ---- projects/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc -+++ projects/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc -@@ -239 +239 @@ static int TracerThread(void* argument) { -- struct sigaltstack handler_stack; -+ stack_t handler_stack; -diff --git projects/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc projects/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc -index 4dcfa558..8ce75be1 100644 ---- projects/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc -+++ projects/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cc -@@ -358 +358 @@ int ExtractResolvFDs(void *state, int *fds, int nfd) { -- __res_state *statp = (__res_state*)state; -+ struct __res_state *statp = (struct __res_state*)state; |