modula2: M2MetaError.{def,mod} and P2SymBuild.mod further cleanup
[official-gcc.git] / gcc / testsuite / gcc.dg / pr93399.c
blob3d9299018beec438c93b2a6e18d58a138b2d0a28
1 /* PR middle-end/93399 */
2 /* { dg-do assemble } */
3 /* { dg-options "-fverbose-asm -dA -g -O3" } */
5 extern inline __attribute__ ((__always_inline__, __gnu_inline__)) char *
6 strstr (const char *haystack, const char *needle)
8 return __builtin_strstr (haystack, needle);
11 int
12 main (int argc, const char **argv)
14 char *substr = strstr (argv[0], "\n");
15 char *another = strstr (argv[0], "\r\n");
16 return 0;