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
This commit is contained in:
Jan Hubicka 2012-04-25 13:31:42 +02:00 committed by Jan Hubicka
parent d68d56b57f
commit 228f466fd6
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -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;
}