URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [verbose-asm.c] - Rev 816
Compare with Previous | Blame | View Log
/* Test whether -fverbose-asm works. */ /* { dg-do compile } */ /* { dg-options "-fverbose-asm" } */ void foo (int *x) { (*x)++; } int bar (int *y) { int a, b; b = 10; a = 26; foo (&a); a += 10; foo (&a); *y--; return b; } int main (int argc, char *argv []) { bar (&argc); return 0; }