URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [warn/] [sequence-pt-3.C] - Rev 301
Compare with Previous | Blame | View Log
/* More sequence point warning tests */
/* { dg-do compile } */
/* { dg-options "-Wsequence-point" } */
void bar(int i, int j)
{
return;
}
void foo (int i)
{
int a = i-i++; (void)a; /* { dg-warning "undefined" "sequence point warning" } */
bar (i--, i++); /* { dg-warning "undefined" "sequence point warning" } */
}