blob: 630441c25f78f970f64338ff06ca7db4d2f12b4a [file] [log] [blame]
// PR tree-optimization/17697
// { dg-do run }
// { dg-options "-O2" }
extern "C" int strcmp (const char *s, const char *t);
namespace A
{
extern int strcmp (const char *s, const char *t);
}
inline int
A::strcmp (const char *s, const char *t)
{
return ::strcmp (s, t);
}
int
foo (const char *x)
{
return A::strcmp ("", x);
}
int
main ()
{
return foo ("") != 0 || foo ("a") == 0;
}