New testcase for PR143

llvm-svn: 10120
This commit is contained in:
Chris Lattner 2003-11-20 20:57:33 +00:00
parent ce9a00cea6
commit 72e6b0c252
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
struct printf_spec {
unsigned int minus_flag:1;
char converter;
};
void parse_doprnt_spec () {
struct printf_spec spec;
spec.minus_flag = 1;
}