comparison gcc/testsuite/gcc.dg/tree-ssa/ssa-fre-87.c @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
comparison
equal deleted inserted replaced
145:1830386684a0 152:2b5abeee2509
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-fre1" } */
3
4 unsigned int foo(unsigned int x, int *p)
5 {
6 unsigned int src = x;
7 unsigned int dst;
8 *p = sizeof (unsigned int);
9 __builtin___memcpy_chk (&dst, &src, *p, 16);
10 return dst;
11 }
12
13 /* { dg-final { scan-tree-dump "return x" "fre1" } } */