summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/ipa/ipa-structreorg-52-creduce-1.c
blob: 0eeda3f82b412d58f72cf080def61daeea5c4276 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { 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 () {}