URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [pr46183.c] - Rev 754
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-fno-dse" } */ void bar(void); void foo (int i, ...) { __builtin_va_list ap; __builtin_va_start (ap, i); __builtin_va_arg (ap, int); while (i) i++; __builtin_va_arg (ap, int); while (i) i++; __builtin_va_arg (ap, int); while (i) i++; __builtin_va_arg (ap, int); if (i) bar (); }
Go to most recent revision | Compare with Previous | Blame | View Log