Fix ICE in substring-handling building 502.gcc_r (PR 87562)
[official-gcc.git] / gcc / testsuite / gcc.dg / Wstring-literal-comparison-4.c
blobf2a711aeb7135f7e269ef39cf6a8129b6f3ab66b
1 /* PR c/7776 */
2 /* { dg-do compile } */
3 /* { dg-options "-Wall -Wno-address" } */
5 int test1(char *ptr)
7 return ptr == "foo";
10 int test2()
12 return "foo" != (const char*)0;
15 int test3()
17 return "foo" == (const char*)0;
20 int test4()
22 return (const char*)0 != "foo";
25 int test5()
27 return (const char*)0 == "foo";