PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / Wstring-literal-comparison-2.c
blob3eb91eeca492aeb66aa3e9a7bdd374c37b9b61a6
1 /* PR c/7776 */
2 /* { dg-do compile } */
3 /* { dg-options "-Wall" } */
5 int test1(char *ptr)
7 return ptr == "foo"; /* { dg-warning "comparison with string" } */
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";