PR middle-end/53088
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 25 Apr 2012 11:31:42 +0000 (11:31 +0000)
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 25 Apr 2012 11:31:42 +0000 (11:31 +0000)
* gcc.target/i386/pr39082-1.c: Update warning location.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@186815 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/pr39082-1.c

index 82f6ae9..d72f93c 100644 (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
index 1d8be2a..36d566d 100644 (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;
 }