| Chris Lattner | 5104e3b | 2006-05-01 23:18:55 +0000 | [diff] [blame] | 1 | // RUN: %llvmgcc %s -S -o - |
| 2 | |||||
| 3 | #ifdef __APPLE__ | ||||
| 4 | /* test that X is layed out correctly when this pragma is used. */ | ||||
| 5 | #pragma options align=mac68k | ||||
| 6 | #endif | ||||
| 7 | |||||
| 8 | struct S { | ||||
| 9 | unsigned A; | ||||
| 10 | unsigned short B; | ||||
| 11 | } X; | ||||
| 12 | |||||