blob: f01c1cc4a7c53dcf109ded782629950ace688767 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* PR middle-end/30473 */
/* Make sure this doesn't ICE. */
/* { dg-do compile } */
/* { dg-options "-O2" } */
extern int sprintf (char *, const char *, ...);
void
foo (char *buf1, char *buf2)
{
sprintf (buf1, "%s", "abcde");
sprintf (buf2, "%s");
}
|