summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGen/2008-01-04-WideBitfield.c
blob: ab50940c384704e34c2ad7deb502285ca9e93451 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang_cc1 -emit-llvm -o - %s
// PR1386
typedef unsigned long uint64_t;
struct X {
  unsigned char pad : 4;
  uint64_t a : 64;
} __attribute__((packed)) x;

uint64_t f(void)
{
  return x.a;
}
OpenPOWER on IntegriCloud