Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / label-decl-4.c
blobd804f8f0fdc66dccb76a7d2bcd359f3354756be8
1 /* Test diagnostics for duplicate label declarations. */
2 /* Origin: Joseph Myers <joseph@codesourcery.com> */
3 /* { dg-do compile } */
4 /* { dg-options "" } */
6 void
7 f (void)
9 __label__ a, b, a; /* { dg-error "error: duplicate label declaration 'a'" } */
10 /* { dg-error "error: previous declaration of 'a' was here" "previous" { target *-*-* } 9 } */
11 __label__ c; /* { dg-error "error: previous declaration of 'c' was here" } */
12 __label__ c; /* { dg-error "error: duplicate label declaration 'c'" } */
13 return;