
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
22 lines
1.3 KiB
C++
22 lines
1.3 KiB
C++
// RUN: %clang_cc1 -std=c++98 %s -verify -fexceptions -fcxx-exceptions -pedantic-errors -DNOEXCEPT="throw()" -DBAD_ALLOC="throw(std::bad_alloc)"
|
|
// RUN: %clang_cc1 -std=c++11 %s -verify -fexceptions -fcxx-exceptions -pedantic-errors -DNOEXCEPT=noexcept -DBAD_ALLOC=
|
|
// RUN: %clang_cc1 -std=c++14 %s -verify -fexceptions -fcxx-exceptions -pedantic-errors -DNOEXCEPT=noexcept -DBAD_ALLOC=
|
|
// RUN: %clang_cc1 -std=c++1z %s -verify -fexceptions -fcxx-exceptions -pedantic-errors -DNOEXCEPT=noexcept -DBAD_ALLOC=
|
|
|
|
// dr412: yes
|
|
// lwg404: yes
|
|
// lwg2340: yes
|
|
|
|
// FIXME: __SIZE_TYPE__ expands to 'long long' on some targets.
|
|
__extension__ typedef __SIZE_TYPE__ size_t;
|
|
namespace std { struct bad_alloc {}; }
|
|
|
|
inline void* operator new(size_t) BAD_ALLOC; // expected-error {{cannot be declared 'inline'}}
|
|
inline void* operator new[](size_t) BAD_ALLOC; // expected-error {{cannot be declared 'inline'}}
|
|
inline void operator delete(void*) NOEXCEPT; // expected-error {{cannot be declared 'inline'}}
|
|
inline void operator delete[](void*) NOEXCEPT; // expected-error {{cannot be declared 'inline'}}
|
|
#if __cplusplus >= 201402L
|
|
inline void operator delete(void*, size_t) NOEXCEPT; // expected-error {{cannot be declared 'inline'}}
|
|
inline void operator delete[](void*, size_t) NOEXCEPT; // expected-error {{cannot be declared 'inline'}}
|
|
#endif
|