forked from OSchip/llvm-project
Add test coverage for cc1's trigraph option handling.
llvm-svn: 224714
This commit is contained in:
parent
c362aedffb
commit
4f371b031b
|
@ -0,0 +1,15 @@
|
||||||
|
// RUN: %clang_cc1 -DSTDCPP11 -std=c++11 -verify -fsyntax-only %s
|
||||||
|
// RUN: %clang_cc1 -DSTDGNU11 -std=gnu++11 -verify -fsyntax-only %s
|
||||||
|
// RUN: %clang_cc1 -DSTDGNU11TRI -trigraphs -std=gnu++11 -verify -fsyntax-only %s
|
||||||
|
// RUN: %clang_cc1 -DSTDCPP17 -std=c++1z -verify -fsyntax-only %s
|
||||||
|
// RUN: %clang_cc1 -DSTDCPP17TRI -trigraphs -std=c++1z -verify -fsyntax-only %s
|
||||||
|
|
||||||
|
void foo() {
|
||||||
|
#if defined(NOFLAGS) || defined(STDCPP11) || defined(STDGNU11TRI) || defined(STDCPP17TRI)
|
||||||
|
const char c[] = "??/n"; // expected-warning{{trigraph converted to '\' character}}
|
||||||
|
#elif defined(STDGNU11) || defined(STDCPP17)
|
||||||
|
const char c[] = "??/n"; // expected-warning{{trigraph ignored}}
|
||||||
|
#else
|
||||||
|
#error Not handled.
|
||||||
|
#endif
|
||||||
|
}
|
Loading…
Reference in New Issue