annotate gcc/testsuite/gcc.dg/ucnid-13.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* Verify diagnostics for extended identifiers refer to UCNs (in the C
kono
parents:
diff changeset
2 locale). Miscellaneous diagnostics. */
kono
parents:
diff changeset
3 /* { dg-do compile } */
kono
parents:
diff changeset
4 /* { dg-options "-std=gnu99 -Wpacked" } */
kono
parents:
diff changeset
5 /* { dg-require-ascii-locale "" } */
kono
parents:
diff changeset
6 /* { dg-skip-if "" { powerpc-ibm-aix* } } */
kono
parents:
diff changeset
7
kono
parents:
diff changeset
8 int a __attribute__((\u00c0)); /* { dg-warning "'\\\\U000000c0' attribute directive ignored" } */
kono
parents:
diff changeset
9
kono
parents:
diff changeset
10 extern void \u00c1 (void) __attribute__((deprecated));
kono
parents:
diff changeset
11 void g (void) { \u00c1 (); } /* { dg-warning "'\\\\U000000c1' is deprecated" } */
kono
parents:
diff changeset
12
kono
parents:
diff changeset
13 struct \u00c2 { char c; } __attribute__((packed)); /* { dg-warning "'\\\\U000000c2'" } */
kono
parents:
diff changeset
14
kono
parents:
diff changeset
15 void h (void) { asm ("%[\u00c3]" : : ); } /* { dg-error "undefined named operand '\\\\U000000c3'" } */