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