summaryrefslogtreecommitdiff
path: root/test/FrontendC/2007-03-26-BitfieldAfterZeroWidth.c
blob: 9b6a8690a336f0460ac60fd0dd955958b8b4c021 (plain)
1
2
3
4
5
6
// RUN: %llvmgcc %s -S -o -
struct W {};
struct Y {
  struct W w;
  int i:1;
} __attribute__ ((packed)) y;