URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [noncompile/] [label-lineno-1.c] - Rev 816
Compare with Previous | Blame | View Log
/* Ensure that diagnostics for labels appear on the correct lineno. by Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 8/23/2000. */ void foo(int i) { my_label: /* { dg-error "previous definition" "prev label" } */ i++; my_label: /* { dg-error "duplicate label" "label lineno" } */ i++; }