Test case for annotate builtin.
[oota-llvm.git] / test / CFrontend / 2008-01-21-PackedStructField.c
1 // RUN: %llvmgcc %s -S -o -
2
3 struct X { long double b; unsigned char c; double __attribute__((packed)) d; };
4 struct X x = { 3.0L, 5, 3.0 };
5