view gcc/testsuite/gcc.dg/strlenopt-29.c @ 144:8f4e72ab4e11

fix segmentation fault caused by nothing next cur_op to end
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 21:23:56 +0900
parents 04ced10e8804
children 1830386684a0
line wrap: on
line source

/* PR tree-optimization/71707 */
/* { dg-do run } */
/* { dg-options "-O2 -fdump-tree-strlen" } */

#include "strlenopt.h"

char a[32];
size_t b;

__attribute__((noinline, noclone)) char *
foo (void)
{
  char *p = memcpy (a, "a", 2) + 1;
  memcpy (&a[1], "b", 2);
  b = strlen (a) + strlen (&a[1]) + strlen (p);
  return p;
}

int
main ()
{
  if (foo () != &a[1] || b != 4)
    abort ();
  return 0;
}

/* { dg-final { scan-tree-dump-times "strlen \\(" 0 "strlen" } } */