summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/ipa/ipa-structreorg-52-creduce-1.c
blob: a3adb08139033d93b76065d1cf78c10d8c392bc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do run } */
/* { dg-options  "-w -flto -fipa-type-escape-analysis -fdump-ipa-type-escape-analysis " } */


#include <stdint.h>
union a {
	  int16_t b
} c() {
	  union a d;
	    -d.b;
}
main() {}