summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/bitfield-init.c
blob: 7459614a1254aefe1516d7496eeccc3fa78fe243 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: clang-cc %s -emit-llvm -o %t
typedef struct { unsigned int i: 1; } c;
const c d = { 1 };

// PR2310
struct Token {
  unsigned n : 31;
};
void sqlite3CodeSubselect(){
  struct Token one = { 1 };
}

typedef union T0 { char field0 : 2; } T0;
T0 T0_values = { 0 };