PR middle-end/53088
* gcc.target/i386/pr39082-1.c: Update warning location.
From-SVN: r186815
+2012-04-25 Jan Hubicka <jh@suse.cz>
+
+ PR middle-end/53088
+ * gcc.target/i386/pr39082-1.c: Update warning location.
+
2012-04-25 Jakub Jelinek <jakub@redhat.com>
PR c/52880
extern union un bar2 (int);
int
-foo1 (union un u)
+foo1 (union un u) /* { dg-message "note: the ABI of passing union with long double has changed in GCC 4.4" } */
{
bar1 (u);
return u.i;
int
foo3 (int x)
{
- union un u = bar2 (x); /* { dg-message "note: the ABI of passing union with long double has changed in GCC 4.4" } */
+ union un u = bar2 (x);
return u.i;
}