I forgot that those don't behave like Clang trunk, again. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@349427 91177308-0d34-0410-b5e6-96231b3b80d8
29 lines
1.2 KiB
C++
29 lines
1.2 KiB
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
// Source Licenses. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// UNSUPPORTED: c++98, c++03, c++11, c++14
|
|
|
|
// Aligned allocation functions are not provided prior to macosx10.13, but
|
|
// AppleClang <= 10 does not know about this restriction and always enables them.
|
|
// XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.12
|
|
// XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.11
|
|
// XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.10
|
|
// XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.9
|
|
// XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.8
|
|
// XFAIL: !(apple-clang-9 || apple-clang-10) && availability=macosx10.7
|
|
|
|
#include <new>
|
|
|
|
|
|
#ifdef _LIBCPP_HAS_NO_ALIGNED_ALLOCATION
|
|
# error "libc++ should have aligned allocation in C++17 and up when targeting a platform that supports it"
|
|
#endif
|
|
|
|
int main() { }
|