view gcc/testsuite/gcc.dg/tree-ssa/restrict-7.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-fre1" } */

int
f (int *__restrict__ *__restrict__ *__restrict__ a, int *b)
{
  *b = 1;
  ***a  = 2;
  return *b;
}

/* { dg-final { scan-tree-dump-times "return 1" 1 "fre1" } } */