aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/strlenopt-23.c
blob: 75dab2ae0bb91aa508dd051a21a33192331f1d94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* PR tree-optimization/57230 */
/* { dg-do run } */
/* { dg-options "-O2" } */

#include "strlenopt.h"

int
main ()
{
  char p[] = "hello world";
  p[0] = (char) (strlen (p) - 1);
  if (strlen (p) != 11)
    abort ();
  return 0;
}