view gcc/testsuite/gcc.dg/pragma-ms_struct.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* 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;
};