From 1c174c62b87ea2403b7b6cee2e0128a69db58c88 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 1 May 2006 23:18:55 +0000 Subject: [PATCH] New testcase that crashes the new CFE. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28042 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CFrontend/2006-05-01-AppleAlignmentPragma.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/CFrontend/2006-05-01-AppleAlignmentPragma.c diff --git a/test/CFrontend/2006-05-01-AppleAlignmentPragma.c b/test/CFrontend/2006-05-01-AppleAlignmentPragma.c new file mode 100644 index 00000000000..c9050aa9e4e --- /dev/null +++ b/test/CFrontend/2006-05-01-AppleAlignmentPragma.c @@ -0,0 +1,12 @@ +// RUN: %llvmgcc %s -S -o - + +#ifdef __APPLE__ +/* test that X is layed out correctly when this pragma is used. */ +#pragma options align=mac68k +#endif + +struct S { + unsigned A; + unsigned short B; +} X; +