Commit e150c414 by Jason Merrill Committed by Jason Merrill

* c-c++-common/dfp/pr35620.c: Give the union a name.

From-SVN: r153818
parent 1eee69dd
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
* g++.old-deja/g++.pt/enum6.C: Likewise. * g++.old-deja/g++.pt/enum6.C: Likewise.
* g++.old-deja/g++.other/anon9.C: Likewise. * g++.old-deja/g++.other/anon9.C: Likewise.
* g++.old-deja/g++.other/linkage1.C: Likewise. * g++.old-deja/g++.other/linkage1.C: Likewise.
* c-c++-common/dfp/pr35620.c: Give the union a name.
2009-11-02 Ulrich Weigand <Ulrich.Weigand@de.ibm.com> 2009-11-02 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
......
...@@ -9,7 +9,7 @@ extern void foo (_Decimal32); ...@@ -9,7 +9,7 @@ extern void foo (_Decimal32);
_Decimal32 *p; _Decimal32 *p;
extern int i; extern int i;
union { _Decimal32 a; int b; } u; union U { _Decimal32 a; int b; } u;
void void
blatz (void) blatz (void)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment