PR lto/84212 - -Wno-* does not disable warnings from -flto link stage
[official-gcc.git] / gcc / testsuite / g++.dg / warn / Wstring-literal-comparison-1.C
blob97e317644d50aab6e860c4913d9160159fff478c
1 /* PR c/7776 */
2 /* { dg-do compile } */
3 /* { dg-options "-Waddress" } */
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";