summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/sso-8.c
blob: 5148188485fe4241eac90a422c967886d1cb3adc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* Test support of scalar_storage_order pragma */

/* { dg-do run } */
/* { dg-options "-fsso-struct=little-endian" } */
/* { dg-require-effective-target int32plus } */

struct S1
{
  int i;
};

#pragma scalar_storage_order big-endian

struct S2
{
  int i;
};

#pragma scalar_storage_order default

struct S3
{
  int i;
};

struct S1 my_s1 = { 0x12345678 };
struct S2 my_s2 = { 0x12345678 };
struct S3 my_s3 = { 0x12345678 };

unsigned char big_endian_pattern[4] = { 0x12, 0x34, 0x56, 0x78 };
unsigned char little_endian_pattern[4] = { 0x78, 0x56, 0x34, 0x12 };

int main (void)
{
  if (__builtin_memcmp (&my_s1, &little_endian_pattern, 4) != 0)
    __builtin_abort ();

  if (__builtin_memcmp (&my_s2, &big_endian_pattern, 4) != 0)
    __builtin_abort ();

  if (__builtin_memcmp (&my_s3, &little_endian_pattern, 4) != 0)
    __builtin_abort ();

  return 0;
}