* experimental New snapshot release

* Remove pr39427-misscompile.diff as it has been applied upstream
This commit is contained in:
Sylvestre Ledru 2019-01-30 09:22:20 +01:00
parent 7e6d375356
commit 8d2542f6a9
3 changed files with 7 additions and 30 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
llvm-toolchain-7 (1:7.0.1~svn352582-1~exp1) UNRELEASED; urgency=medium
* experimental New snapshot release
* Remove pr39427-misscompile.diff as it has been applied upstream
-- Sylvestre Ledru <sylvestre@debian.org> Wed, 30 Jan 2019 08:53:14 +0100
llvm-toolchain-7 (1:7.0.1-5) unstable; urgency=medium
* Add 'Rules-Requires-Root: no' in debian/control

View File

@ -1,29 +0,0 @@
Index: llvm-toolchain-7-7/include/llvm/ADT/Optional.h
===================================================================
--- llvm-toolchain-7-7.orig/include/llvm/ADT/Optional.h
+++ llvm-toolchain-7-7/include/llvm/ADT/Optional.h
@@ -108,24 +108,6 @@ template <typename T, bool IsPodLike> st
}
};
-#if !defined(__GNUC__) || defined(__clang__) // GCC up to GCC7 miscompiles this.
-/// Storage for trivially copyable types only.
-template <typename T> struct OptionalStorage<T, true> {
- AlignedCharArrayUnion<T> storage;
- bool hasVal = false;
-
- OptionalStorage() = default;
-
- OptionalStorage(const T &y) : hasVal(true) { new (storage.buffer) T(y); }
- OptionalStorage &operator=(const T &y) {
- *reinterpret_cast<T *>(storage.buffer) = y;
- hasVal = true;
- return *this;
- }
-
- void reset() { hasVal = false; }
-};
-#endif
} // namespace optional_detail
template <typename T> class Optional {

View File

@ -99,7 +99,6 @@ clang-arm-default-vfp3-on-armv7a.patch
# For the bootstrap
bootstrap-fix-include-next.diff
clangd-atomic-cmake.patch
pr39427-misscompile.diff
# Rustc
rustc-aarch64-test-failure.diff