From e6ccd113b9ad7c40aa5f71e526537bbeac33d80b Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Thu, 29 May 2008 19:17:15 +0000 Subject: For PR1338: Rename test dirs git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51695 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/FrontendC/2003-08-29-StructLayoutBug.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/FrontendC/2003-08-29-StructLayoutBug.c (limited to 'test/FrontendC/2003-08-29-StructLayoutBug.c') diff --git a/test/FrontendC/2003-08-29-StructLayoutBug.c b/test/FrontendC/2003-08-29-StructLayoutBug.c new file mode 100644 index 0000000..a5f6fb1 --- /dev/null +++ b/test/FrontendC/2003-08-29-StructLayoutBug.c @@ -0,0 +1,10 @@ +// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null + +struct foo { + unsigned int I:1; + unsigned char J[1]; + unsigned int K:1; + }; + +void test(struct foo *X) {} + -- cgit v1.1