No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / gcc.target / powerpc / ppc64-toc.c
blobed555a9b6d79532861a2cb98b532128521798df6
1 /* { dg-do link } */
2 /* { dg-options "-mminimal-toc" { target { powerpc64-*-* && lp64 } } } */
4 char *strchr (const char *, int);
6 int
7 foo (int a)
9 int b;
11 b = 0;
12 if ("/"[1] != '\0')
13 if (strchr ("/", a))
14 b = 1;
15 return b;
18 int
19 main (void)
21 return 0;