aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pragma-ms_struct.c
blob: cc71610146ad4c2792430a334bded392151c50ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* Darwin pragma for __attribute__ ((ms_struct)).  */

/* { dg-do compile { target *-*-darwin* } } */
/* { dg-options "-Wall" } */

#pragma ms_struct on

#pragma ms_struct off

#pragma ms_struct reset

#pragma ms_struct /* { dg-warning "malformed" } */

#pragma ms_struct on top of spaghetti /* { dg-warning "junk" } */

struct foo
{
  int a;
  int b;
  char c;
};