2006-05-01 23:18:55 +00:00
|
|
|
// RUN: %llvmgcc %s -S -o -
|
|
|
|
|
|
|
|
#ifdef __APPLE__
|
2011-04-15 05:18:47 +00:00
|
|
|
/* test that X is laid out correctly when this pragma is used. */
|
2006-05-01 23:18:55 +00:00
|
|
|
#pragma options align=mac68k
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct S {
|
|
|
|
unsigned A;
|
|
|
|
unsigned short B;
|
|
|
|
} X;
|
|
|
|
|