URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [noncompile/] [label-lineno-1.c] - Rev 298
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-message "note: previous definition" "prev label" } */ i++; my_label: /* { dg-error "duplicate label" "label lineno" } */ i++; }