Commit 228f466f by Jan Hubicka Committed by Jan Hubicka

re PR middle-end/53088 (gcc.target/i386/pr39082-1.c)

	PR middle-end/53088
	* gcc.target/i386/pr39082-1.c: Update warning location.

From-SVN: r186815
parent d68d56b5
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
......
......@@ -13,7 +13,7 @@ extern int bar1 (union un);
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;
......@@ -30,6 +30,6 @@ foo2 (void)
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;
}
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