blob: 6ffe76a1719744dc4c9dc532130db5f88417f552 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3struct printf_spec {
4 unsigned int minus_flag:1;
5 char converter;
6};
7
8void parse_doprnt_spec () {
9 struct printf_spec spec;
10 spec.minus_flag = 1;
11}
12