URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [sequence-pt-3.c] - Rev 801
Go to most recent revision | 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" } */ }
Go to most recent revision | Compare with Previous | Blame | View Log