Daniel Dunbar | d7d5f02 | 2009-03-24 02:24:46 +0000 | [diff] [blame] | 1 | // RUN: clang-cc -emit-llvm -o - %s |
Daniel Dunbar | 8239713 | 2008-08-06 05:32:55 +0000 | [diff] [blame] | 2 | // PR2643 |
3 | |||||
4 | void foo() { | ||||
5 | struct { | ||||
6 | int a : 1; | ||||
7 | int b : 1; | ||||
8 | } entry = {0}; | ||||
9 | } | ||||
10 |