[PR64164] Drop copyrename, use coalescible partition as base when optimizing.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr53790.c
blob0abd3dd83c1b319cac926f278eda784502df8939
1 /* { dg-do compile } */
3 typedef struct s {
4 int value;
5 } s_t;
7 static inline int
8 read(s_t const *var)
10 return var->value;
13 int main()
15 extern union u extern_var;
16 return read((s_t *)&extern_var);