comparison gcc/testsuite/gcc.c-torture/compile/pr89412.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
1 /* PR middle-end/89412 */
2
3 struct S { double a, b; } d;
4 int e;
5 double f;
6
7 void
8 foo ()
9 {
10 _Complex double h;
11 while (e)
12 {
13 f = h;
14 *(struct S *) &h = d;
15 }
16 }