diff options
author | Anders Carlsson <andersca@mac.com> | 2008-12-06 20:32:39 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2008-12-06 20:32:39 +0000 |
commit | 663388f2eac06eb599cda1b831fba10257fcfa46 (patch) | |
tree | dd5c0d02101517c6b485601d0f6073b798f48ab3 | |
parent | a75023d60fc22cef8c5c0e6ea79758233f4d2e2d (diff) |
Fix invalid bit-field.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60627 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/union.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/union.c b/test/CodeGen/union.c index 96287ea0a6..9d82f4fd9b 100644 --- a/test/CodeGen/union.c +++ b/test/CodeGen/union.c @@ -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{ |