aboutsummaryrefslogtreecommitdiffstats
path: root/test/CFrontend/2008-01-21-PackedStructField.c
blob: c87e65b38b8262408e231a06f3c746daa6afd77f (plain)
1
2
3
4
5
// RUN: %llvmgcc %s -S -o -

struct X { long double b; unsigned char c; double __attribute__((packed)) d; };
struct X x = { 3.0L, 5, 3.0 };