Fix invalid bit-field.

llvm-svn: 60627
This commit is contained in:
Anders Carlsson 2008-12-06 20:32:39 +00:00
parent 233a60d03e
commit 45f4b8c0f2
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ int f3(value v) {
}
enum E9 { one, two };
union S65 { enum E9 a:62; } ; union S65 s65;
union S65 { enum E9 a; } ; union S65 s65;
void fS65() { enum E9 e = s65.a; }
typedef union{