]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/PR2643-null-store-to-bitfield.c
Vendor import of clang trunk r321530:
[FreeBSD/FreeBSD.git] / test / CodeGen / PR2643-null-store-to-bitfield.c
1 // RUN: %clang_cc1 -emit-llvm -o - %s
2 // PR2643
3
4 void foo() {
5   struct {
6     int a : 1;
7     int b : 1;
8   } entry = {0};
9 }
10