diff options
author | Eric Fiselier <eric@efcs.ca> | 2017-05-10 21:40:58 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2017-05-10 21:40:58 +0000 |
commit | 0c6e7ae4cc8039af611d7a5cf153d9bb7664f3e2 (patch) | |
tree | 3ff6890c161d16523d9d6b3b71b32657a750a976 /libcxx/test/std/utilities/function.objects | |
parent | abea18feba27b9121593c886ae0c0597e8f658e3 (diff) | |
download | bcm5719-llvm-0c6e7ae4cc8039af611d7a5cf153d9bb7664f3e2.tar.gz bcm5719-llvm-0c6e7ae4cc8039af611d7a5cf153d9bb7664f3e2.zip |
Remove usages of _LIBCPP_MSVC which is never defined
llvm-svn: 302736
Diffstat (limited to 'libcxx/test/std/utilities/function.objects')
-rw-r--r-- | libcxx/test/std/utilities/function.objects/func.not_fn/not_fn.pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/std/utilities/function.objects/func.not_fn/not_fn.pass.cpp b/libcxx/test/std/utilities/function.objects/func.not_fn/not_fn.pass.cpp index 2b19211be9b..aa8eb3916db 100644 --- a/libcxx/test/std/utilities/function.objects/func.not_fn/not_fn.pass.cpp +++ b/libcxx/test/std/utilities/function.objects/func.not_fn/not_fn.pass.cpp @@ -416,7 +416,7 @@ void throws_in_constructor_test() ThrowsOnCopy() = default; bool operator()() const { assert(false); -#if defined(_LIBCPP_MSVC) +#if defined(TEST_COMPILER_C1XX) __assume(0); #else __builtin_unreachable(); |