URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20000519-1.c] - Rev 841
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdarg.h> int bar (int a, va_list ap) { int b; do b = va_arg (ap, int); while (b > 10); return a + b; } int foo (int a, ...) { va_list ap; va_start (ap, a); return bar (a, ap); } int main () { if (foo (1, 2, 3) != 3) abort (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log