Eric Fiselier | c74a2e1 | 2017-03-04 02:04:45 +0000 | [diff] [blame] | 1 | //===----------------------------------------------------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 6 | // Source Licenses. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
Eric Fiselier | d532ddc | 2017-03-04 02:29:25 +0000 | [diff] [blame^] | 10 | // UNSUPPORTED: c++98, c++03 |
| 11 | |
| 12 | // The system unwind.h on OS X provides an incorrectly aligned _Unwind_Exception |
| 13 | // type. That causes these tests to fail. This XFAIL is my best attempt at |
| 14 | // working around this failure. |
| 15 | // XFAIL: darwin && libcxxabi-has-system-unwinder |
| 16 | |
Eric Fiselier | c74a2e1 | 2017-03-04 02:04:45 +0000 | [diff] [blame] | 17 | // Test that the address of the exception object is properly aligned to the |
| 18 | // largest supported alignment for the system. |
| 19 | |
| 20 | #include <cstdint> |
| 21 | #include <cassert> |
| 22 | |
Eric Fiselier | d532ddc | 2017-03-04 02:29:25 +0000 | [diff] [blame^] | 23 | #include <unwind.h> |
| 24 | |
Eric Fiselier | c74a2e1 | 2017-03-04 02:04:45 +0000 | [diff] [blame] | 25 | struct __attribute__((aligned)) AlignedType {}; |
Eric Fiselier | d532ddc | 2017-03-04 02:29:25 +0000 | [diff] [blame^] | 26 | static_assert(alignof(AlignedType) == alignof(_Unwind_Exception), |
| 27 | "_Unwind_Exception is incorrectly aligned. This test is expected to fail"); |
| 28 | |
Eric Fiselier | c74a2e1 | 2017-03-04 02:04:45 +0000 | [diff] [blame] | 29 | struct MinAligned { }; |
| 30 | static_assert(alignof(MinAligned) == 1 && sizeof(MinAligned) == 1, ""); |
| 31 | |
| 32 | int main() { |
| 33 | for (int i=0; i < 10; ++i) { |
| 34 | try { |
| 35 | throw MinAligned{}; |
| 36 | } catch (MinAligned const& ref) { |
| 37 | assert(reinterpret_cast<uintptr_t>(&ref) % alignof(AlignedType) == 0); |
| 38 | } |
| 39 | } |
| 40 | } |