URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [lto/] [20081024_0.c] - Rev 753
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-lto-do run } */ #include <stdarg.h> #include <stdio.h> #include <string.h> char * myprintf (const char *fmt, ...) { va_list args; static char buf[80]; va_start (args, fmt); (void) vsnprintf (buf, sizeof (buf), fmt, args); va_end (args); return buf; } int main () { char *s; s = myprintf ("%s: %d\n", "foo", 1); return strcmp (s, "foo: 1\n") != 0; }
Go to most recent revision | Compare with Previous | Blame | View Log