Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr53084.c
blob1afc016dfc410f287770487cb56c17014daf0a57
1 /* PR middle-end/53084 */
3 extern void abort (void);
5 __attribute__((noinline, noclone)) void
6 bar (const char *p)
8 if (p[0] != 'o' || p[1] != 'o' || p[2])
9 abort ();
12 int
13 main ()
15 static const char *const foo[] = {"foo" + 1};
16 bar (foo[0]);
17 return 0;