URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [label-decl-4.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test diagnostics for duplicate label declarations. */ /* Origin: Joseph Myers <joseph@codesourcery.com> */ /* { dg-do compile } */ /* { dg-options "" } */ void f (void) { __label__ a, b, a; /* { dg-error "duplicate label declaration 'a'" } */ /* { dg-message "note: previous declaration of 'a' was here" "previous" { target *-*-* } 9 } */ __label__ c; /* { dg-message "note: previous declaration of 'c' was here" } */ __label__ c; /* { dg-error "duplicate label declaration 'c'" } */ return; }
Go to most recent revision | Compare with Previous | Blame | View Log