summaryrefslogtreecommitdiff
path: root/test/Lexer
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2017-05-25 14:58:46 +0000
committerEric Fiselier <eric@efcs.ca>2017-05-25 14:58:46 +0000
commit37a1cf7528130751151a50d8ecdeb370da3539e2 (patch)
tree01781b1366ac6310fd3ea1171a8913cec2651718 /test/Lexer
parent40ed16ee38828a60d1eb11122170d8ac8611422c (diff)
[coroutines] Bump __cpp_coroutines version
Summary: This patch is needed so that Libc++ can actually tess if Clang supports coroutines, instead of just paying lip service with a partial implementation. Otherwise the libc++ test suite will fail against older versions of Clang Reviewers: GorNishanov, rsmith Reviewed By: GorNishanov Subscribers: cfe-commits Differential Revision: https://reviews.llvm.org/D33536 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@303867 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Lexer')
-rw-r--r--test/Lexer/cxx-features.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Lexer/cxx-features.cpp b/test/Lexer/cxx-features.cpp
index d69ef08a59..24f38e51d9 100644
--- a/test/Lexer/cxx-features.cpp
+++ b/test/Lexer/cxx-features.cpp
@@ -235,6 +235,6 @@
#error "wrong value for __cpp_experimental_concepts"
#endif
-#if (COROUTINES && !__cpp_coroutines) || (!COROUTINES && __cpp_coroutines)
+#if defined(COROUTINES) ? check(coroutines, 201703L, 201703L, 201703L, 201703L) : check(coroutines, 0, 0, 0, 0)
#error "wrong value for __cpp_coroutines"
#endif