d: Fix gdc -O2 -mavx generates misaligned vmovdqa instruction [PR114171]
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.brendan / misc16.C
blobbc19edc2dd17aa7562d9086b3eb8c3c5952cb680
1 // { dg-do assemble  }
2 // GROUPS passed miscellaneous-bugs
3 // Using a typedef causes a compiler error
4 typedef unsigned int Uint32;
6 // Using a define so that there isn't a typedef works OK.
7 //#define Uint32 unsigned int
9 Uint32 func0(Uint32, Uint32)
11    return 0;
14 Uint32 func1(Uint32, Uint32)
16    return 1;
19 Uint32 (*mf[])(Uint32, Uint32) = {func0, func1};