blob: d9c53fb52a6c470c125da0cdc72a1632a1c556f6 [file] [log] [blame]
/* PR tree-optimization/89314 */
/* { dg-do compile } */
/* { dg-options "-O2" } */
extern __SIZE_TYPE__ strlen (const float *);
void bar (void);
void
foo (float *s)
{
if (strlen (s) > 0)
bar ();
}