* cfghooks.c (verify_flow_info): Disable check that all probabilities
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / darwin-misaligned.c
blob9e53b7b22241e90b8fdc25843ec2f027c03ffea3
1 /* { dg-do compile { target powerpc*-*-darwin* } } */
2 /* { dg-options "-O2 -mpowerpc64" } */
4 typedef struct Nlm_rect {
5 short sh1;
6 short sh2;
7 short sh3;
8 short sh4;
9 } S8;
11 typedef struct udv_mouse_select {
12 short Action_type;
13 S8 rcClip;
14 int pgp;
15 } UDVselect;
17 UDVselect ms;
18 int UDV(S8 rcClip);
20 int main()
22 ms.rcClip.sh1 = 1;
23 ms.rcClip.sh4 = 4;
24 return UDV(ms.rcClip);
27 int UDV(S8 rcClip){
29 return !(rcClip.sh1 == 1 && rcClip.sh4 == 4);