public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug testsuite/49464] New: [4.7 Regression] FAIL: g++.dg/ext/altivec-17.C  (test for errors, line 15)
@ 2011-06-18 19:29 dominiq at lps dot ens.fr
  2011-06-18 23:55 ` [Bug testsuite/49464] " mikpe at it dot uu.se
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: dominiq at lps dot ens.fr @ 2011-06-18 19:29 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49464

           Summary: [4.7 Regression] FAIL: g++.dg/ext/altivec-17.C  (test
                    for errors, line 15)
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: testsuite
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: dominiq@lps.ens.fr
                CC: jason@redhat.com, jakub@redhat.com


On powerpc-apple-darwin9 at revision 175158 g++.dg/ext/altivec-17.C fails with

FAIL: g++.dg/ext/altivec-17.C  (test for errors, line 15)
FAIL: g++.dg/ext/altivec-17.C (test for excess errors)
Excess errors:
/opt/gcc/work/gcc/testsuite/g++.dg/ext/altivec-17.C:15:24: error: invalid
initialization of reference of type 'const simd_type& {aka const __vector(4)
unsigned int&}' from expression of type 'const bool_simd_type {aka const
__vector(4) __bool int}'

which does not match the dg-error "'const simd_type&' from expression of type
'const bool_simd_type'".
The fix should be similar to the one for pr49432 (note that it is likely also a
4.6 regression).


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug testsuite/49464] [4.7 Regression] FAIL: g++.dg/ext/altivec-17.C  (test for errors, line 15)
  2011-06-18 19:29 [Bug testsuite/49464] New: [4.7 Regression] FAIL: g++.dg/ext/altivec-17.C (test for errors, line 15) dominiq at lps dot ens.fr
@ 2011-06-18 23:55 ` mikpe at it dot uu.se
  2011-06-20 11:03 ` [Bug testsuite/49464] [4.6/4.7 " dominiq at lps dot ens.fr
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: mikpe at it dot uu.se @ 2011-06-18 23:55 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49464

--- Comment #1 from Mikael Pettersson <mikpe at it dot uu.se> 2011-06-18 23:54:51 UTC ---
(In reply to comment #0)
> (note that it is likely also a 4.6 regression).

It is, g++.dg/ext/altivec-17.c fails for me on powerpc64-linux with
gcc-4.6-20110617, while it didn't fail with gcc-4.6-20110610.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug testsuite/49464] [4.6/4.7 Regression] FAIL: g++.dg/ext/altivec-17.C  (test for errors, line 15)
  2011-06-18 19:29 [Bug testsuite/49464] New: [4.7 Regression] FAIL: g++.dg/ext/altivec-17.C (test for errors, line 15) dominiq at lps dot ens.fr
  2011-06-18 23:55 ` [Bug testsuite/49464] " mikpe at it dot uu.se
@ 2011-06-20 11:03 ` dominiq at lps dot ens.fr
  2011-08-01 14:44 ` rguenth at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: dominiq at lps dot ens.fr @ 2011-06-20 11:03 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49464

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2011.06.20 11:00:17
            Summary|[4.7 Regression] FAIL:      |[4.6/4.7 Regression] FAIL:
                   |g++.dg/ext/altivec-17.C     |g++.dg/ext/altivec-17.C
                   |(test for errors, line 15)  |(test for errors, line 15)
     Ever Confirmed|0                           |1

--- Comment #2 from Dominique d'Humieres <dominiq at lps dot ens.fr> 2011-06-20 11:00:17 UTC ---
What would be the "best fix" between the two?

--- /opt/gcc/_gcc_clean/gcc/testsuite/g++.dg/ext/altivec-17.C    2010-07-08
10:41:46.000000000 +0200
+++ /opt/gcc/work/gcc/testsuite/g++.dg/ext/altivec-17.C    2011-06-20
12:46:32.000000000 +0200
@@ -12,5 +12,5 @@ typedef vector__ bool__ int bool_simd_ty

 void Foo (bool_simd_type const &a)
 {
-  simd_type const &v = a; // { dg-error "'const simd_type&' from expression of
type 'const bool_simd_type'" }
+  simd_type const &v = a; // { dg-error "'const simd_type& {aka \[^\n\r\}\]*}'
from expression of type 'const bool_simd_type {aka \[^\n\r\}\]*}'" }
 }

or

--- /opt/gcc/_gcc_clean/gcc/testsuite/g++.dg/ext/altivec-17.C    2010-07-08
10:41:46.000000000 +0200
+++ /Users/dominiq/Desktop/altivec-17.C    2011-06-20 12:01:18.000000000 +0200
@@ -12,5 +12,5 @@ typedef vector__ bool__ int bool_simd_ty

 void Foo (bool_simd_type const &a)
 {
-  simd_type const &v = a; // { dg-error "'const simd_type&' from expression of
type 'const bool_simd_type'" }
+  simd_type const &v = a; // { dg-error "'const simd_type& {aka const
__vector\\\(4\\\) unsigned int&}' from expression of type 'const bool_simd_type
{aka const __vector\\\(4\\\) __bool int}'" }
 }


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug testsuite/49464] [4.6/4.7 Regression] FAIL: g++.dg/ext/altivec-17.C  (test for errors, line 15)
  2011-06-18 19:29 [Bug testsuite/49464] New: [4.7 Regression] FAIL: g++.dg/ext/altivec-17.C (test for errors, line 15) dominiq at lps dot ens.fr
  2011-06-18 23:55 ` [Bug testsuite/49464] " mikpe at it dot uu.se
  2011-06-20 11:03 ` [Bug testsuite/49464] [4.6/4.7 " dominiq at lps dot ens.fr
@ 2011-08-01 14:44 ` rguenth at gcc dot gnu.org
  2011-08-17 20:50 ` jsm28 at gcc dot gnu.org
  2011-09-07 12:41 ` dominiq at lps dot ens.fr
  4 siblings, 0 replies; 6+ messages in thread
From: rguenth at gcc dot gnu.org @ 2011-08-01 14:44 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49464

Richard Guenther <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.6.2


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug testsuite/49464] [4.6/4.7 Regression] FAIL: g++.dg/ext/altivec-17.C  (test for errors, line 15)
  2011-06-18 19:29 [Bug testsuite/49464] New: [4.7 Regression] FAIL: g++.dg/ext/altivec-17.C (test for errors, line 15) dominiq at lps dot ens.fr
                   ` (2 preceding siblings ...)
  2011-08-01 14:44 ` rguenth at gcc dot gnu.org
@ 2011-08-17 20:50 ` jsm28 at gcc dot gnu.org
  2011-09-07 12:41 ` dominiq at lps dot ens.fr
  4 siblings, 0 replies; 6+ messages in thread
From: jsm28 at gcc dot gnu.org @ 2011-08-17 20:50 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49464

Joseph S. Myers <jsm28 at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug testsuite/49464] [4.6/4.7 Regression] FAIL: g++.dg/ext/altivec-17.C  (test for errors, line 15)
  2011-06-18 19:29 [Bug testsuite/49464] New: [4.7 Regression] FAIL: g++.dg/ext/altivec-17.C (test for errors, line 15) dominiq at lps dot ens.fr
                   ` (3 preceding siblings ...)
  2011-08-17 20:50 ` jsm28 at gcc dot gnu.org
@ 2011-09-07 12:41 ` dominiq at lps dot ens.fr
  4 siblings, 0 replies; 6+ messages in thread
From: dominiq at lps dot ens.fr @ 2011-09-07 12:41 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49464

Dominique d'Humieres <dominiq at lps dot ens.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |meissner at gcc dot gnu.org
         Resolution|                            |FIXED

--- Comment #3 from Dominique d'Humieres <dominiq at lps dot ens.fr> 2011-09-07 12:24:06 UTC ---
Fixed by revision 178614 (see
http://gcc.gnu.org/ml/gcc-testresults/2011-09/msg00597.html )

Author:    meissner
Date:    Tue Sep 6 22:06:59 2011 UTC (13 hours, 56 minutes ago)
Changed paths:    2
Log Message:    
Fix altivec-17.C to match current compiler error message


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-09-07 12:24 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-06-18 19:29 [Bug testsuite/49464] New: [4.7 Regression] FAIL: g++.dg/ext/altivec-17.C (test for errors, line 15) dominiq at lps dot ens.fr
2011-06-18 23:55 ` [Bug testsuite/49464] " mikpe at it dot uu.se
2011-06-20 11:03 ` [Bug testsuite/49464] [4.6/4.7 " dominiq at lps dot ens.fr
2011-08-01 14:44 ` rguenth at gcc dot gnu.org
2011-08-17 20:50 ` jsm28 at gcc dot gnu.org
2011-09-07 12:41 ` dominiq at lps dot ens.fr

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).