Skip to content

Commit 162231c

Browse files
Formatting, fix generated files, etc.
1 parent af30d94 commit 162231c

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

libcxx/lib/abi/x86_64-unknown-linux-gnu.libcxxabi.v1.stable.exceptions.nonew.abilist

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
{'is_defined': False, 'name': '_ZTVSt13runtime_error', 'size': 0, 'type': 'OBJECT'}
3636
{'is_defined': False, 'name': '_ZTVSt14overflow_error', 'size': 0, 'type': 'OBJECT'}
3737
{'is_defined': False, 'name': '_ZTVSt16invalid_argument', 'size': 0, 'type': 'OBJECT'}
38+
{'is_defined': False, 'name': '_ZTVSt9exception', 'size': 0, 'type': 'OBJECT'}
3839
{'is_defined': False, 'name': '_ZdaPv', 'type': 'FUNC'}
3940
{'is_defined': False, 'name': '_ZdaPvSt11align_val_t', 'type': 'FUNC'}
4041
{'is_defined': False, 'name': '_ZdlPv', 'type': 'FUNC'}
@@ -1967,6 +1968,8 @@
19671968
{'is_defined': True, 'name': '_ZTVNSt3__120__codecvt_utf8_utf16IDiEE', 'size': 96, 'type': 'OBJECT'}
19681969
{'is_defined': True, 'name': '_ZTVNSt3__120__codecvt_utf8_utf16IDsEE', 'size': 96, 'type': 'OBJECT'}
19691970
{'is_defined': True, 'name': '_ZTVNSt3__120__codecvt_utf8_utf16IwEE', 'size': 96, 'type': 'OBJECT'}
1971+
{'is_defined': True, 'name': '_ZTVNSt3__120__time_get_c_storageIcEE', 'size': 72, 'type': 'OBJECT'}
1972+
{'is_defined': True, 'name': '_ZTVNSt3__120__time_get_c_storageIwEE', 'size': 72, 'type': 'OBJECT'}
19701973
{'is_defined': True, 'name': '_ZTVNSt3__13pmr15memory_resourceE', 'size': 56, 'type': 'OBJECT'}
19711974
{'is_defined': True, 'name': '_ZTVNSt3__13pmr25monotonic_buffer_resourceE', 'size': 56, 'type': 'OBJECT'}
19721975
{'is_defined': True, 'name': '_ZTVNSt3__13pmr26synchronized_pool_resourceE', 'size': 56, 'type': 'OBJECT'}

libcxx/test/support/test_macros.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -363,19 +363,19 @@ inline Tp const& DoNotOptimize(Tp const& value) {
363363
// Disables tail-call optimization for "outbound" calls
364364
// performed in the function annotated with this attribute.
365365
#if __has_cpp_attribute(_Clang::__disable_tail_calls__)
366-
#define TEST_NO_TAIL_CALLS_OUT [[_Clang::__disable_tail_calls__]]
366+
# define TEST_NO_TAIL_CALLS_OUT [[_Clang::__disable_tail_calls__]]
367367
#elif __has_cpp_attribute(__gnu__::__optimize__)
368-
#define TEST_NO_TAIL_CALLS_OUT [[__gnu__::__optimize__("no-optimize-sibling-calls")]]
368+
# define TEST_NO_TAIL_CALLS_OUT [[__gnu__::__optimize__("no-optimize-sibling-calls")]]
369369
#else
370-
#define TEST_NO_TAIL_CALLS_OUT
370+
# define TEST_NO_TAIL_CALLS_OUT
371371
#endif
372372

373373
// Disables tail-call optimization for "inbound" calls -- that is,
374374
// calls from some other function calling the one having this attribute.
375375
#if __has_cpp_attribute(_Clang::__not_tail_called__)
376-
#define TEST_NO_TAIL_CALLS_IN [[_Clang::__not_tail_called__]]
376+
# define TEST_NO_TAIL_CALLS_IN [[_Clang::__not_tail_called__]]
377377
#else
378-
#define TEST_NO_TAIL_CALLS_IN
378+
# define TEST_NO_TAIL_CALLS_IN
379379
#endif
380380

381381
#ifdef _WIN32
@@ -395,8 +395,8 @@ inline Tp const& DoNotOptimize(Tp const& value) {
395395
//
396396
// The same goes on IBM zOS.
397397
// The same goes on AIX.
398-
#define ASSERT_WITH_LIBRARY_INTERNAL_ALLOCATIONS(...) ((void)(__VA_ARGS__))
399-
#define TEST_SUPPORTS_LIBRARY_INTERNAL_ALLOCATIONS 0
398+
# define ASSERT_WITH_LIBRARY_INTERNAL_ALLOCATIONS(...) ((void)(__VA_ARGS__))
399+
# define TEST_SUPPORTS_LIBRARY_INTERNAL_ALLOCATIONS 0
400400
#else
401401
#define ASSERT_WITH_LIBRARY_INTERNAL_ALLOCATIONS(...) assert(__VA_ARGS__)
402402
#define TEST_SUPPORTS_LIBRARY_INTERNAL_ALLOCATIONS 1
@@ -417,7 +417,7 @@ inline Tp const& DoNotOptimize(Tp const& value) {
417417
// the end user executable, and these fallbacks work even in DLL configurations.
418418
// In MinGW configurations when built as a DLL, and on zOS, these fallbacks
419419
// don't work though.
420-
#define ASSERT_WITH_OPERATOR_NEW_FALLBACKS(...) ((void)(__VA_ARGS__))
420+
# define ASSERT_WITH_OPERATOR_NEW_FALLBACKS(...) ((void)(__VA_ARGS__))
421421
#else
422422
#define ASSERT_WITH_OPERATOR_NEW_FALLBACKS(...) assert(__VA_ARGS__)
423423
#endif

0 commit comments

Comments
 (0)