public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/35512]  New: [4.4 Regression]: gcc.target/ia64/visibility-1.c
@ 2008-03-09  4:51 hjl dot tools at gmail dot com
  2008-03-09  4:58 ` [Bug testsuite/35512] " pinskia at gcc dot gnu dot org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: hjl dot tools at gmail dot com @ 2008-03-09  4:51 UTC (permalink / raw)
  To: gcc-bugs

Revision 133014 gives

FAIL: gcc.target/ia64/visibility-1.c scan-assembler gprel.*variable_i

Revision 132852 is OK.


-- 
           Summary: [4.4 Regression]: gcc.target/ia64/visibility-1.c
           Product: gcc
           Version: 4.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: hjl dot tools at gmail dot com


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


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

* [Bug testsuite/35512] [4.4 Regression]: gcc.target/ia64/visibility-1.c
  2008-03-09  4:51 [Bug target/35512] New: [4.4 Regression]: gcc.target/ia64/visibility-1.c hjl dot tools at gmail dot com
@ 2008-03-09  4:58 ` pinskia at gcc dot gnu dot org
  2008-03-11 12:03 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-03-09  4:58 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from pinskia at gcc dot gnu dot org  2008-03-09 04:58 -------
>FAIL: gcc.target/ia64/visibility-1.c scan-assembler gprel.*variable_i

If you look at the testcase, you will notice that variable_i is only read from
and never written to so the variable becomes a readonly variable via
ipa-reference and then Store CCP inlines the value so it is no longer
referenced and we don't need to emit it.

So the testcase was never written correctly :).


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
          Component|target                      |testsuite
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2008-03-09 04:58:04
               date|                            |


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


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

* [Bug testsuite/35512] [4.4 Regression]: gcc.target/ia64/visibility-1.c
  2008-03-09  4:51 [Bug target/35512] New: [4.4 Regression]: gcc.target/ia64/visibility-1.c hjl dot tools at gmail dot com
  2008-03-09  4:58 ` [Bug testsuite/35512] " pinskia at gcc dot gnu dot org
@ 2008-03-11 12:03 ` pinskia at gcc dot gnu dot org
  2008-03-18  4:02 ` wilson at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-03-11 12:03 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pinskia at gcc dot gnu dot
                   |                            |org
   Target Milestone|---                         |4.4.0


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


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

* [Bug testsuite/35512] [4.4 Regression]: gcc.target/ia64/visibility-1.c
  2008-03-09  4:51 [Bug target/35512] New: [4.4 Regression]: gcc.target/ia64/visibility-1.c hjl dot tools at gmail dot com
  2008-03-09  4:58 ` [Bug testsuite/35512] " pinskia at gcc dot gnu dot org
  2008-03-11 12:03 ` pinskia at gcc dot gnu dot org
@ 2008-03-18  4:02 ` wilson at gcc dot gnu dot org
  2008-03-18  4:06 ` wilson at gcc dot gnu dot org
  2008-03-18  4:07 ` wilson at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: wilson at gcc dot gnu dot org @ 2008-03-18  4:02 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from wilson at gcc dot gnu dot org  2008-03-18 04:02 -------
Subject: Bug 35512

Author: wilson
Date: Tue Mar 18 04:01:21 2008
New Revision: 133301

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=133301
Log:
PR testsuite/35512
* gcc.target/ia64/visibility-1.c (foo): Change return type to void.
Write variables instead of reading them.

Modified:
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.target/ia64/visibility-1.c


-- 


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


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

* [Bug testsuite/35512] [4.4 Regression]: gcc.target/ia64/visibility-1.c
  2008-03-09  4:51 [Bug target/35512] New: [4.4 Regression]: gcc.target/ia64/visibility-1.c hjl dot tools at gmail dot com
                   ` (2 preceding siblings ...)
  2008-03-18  4:02 ` wilson at gcc dot gnu dot org
@ 2008-03-18  4:06 ` wilson at gcc dot gnu dot org
  2008-03-18  4:07 ` wilson at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: wilson at gcc dot gnu dot org @ 2008-03-18  4:06 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from wilson at gcc dot gnu dot org  2008-03-18 04:06 -------
Mine.  IA-64.


-- 

wilson at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |wilson at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED


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


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

* [Bug testsuite/35512] [4.4 Regression]: gcc.target/ia64/visibility-1.c
  2008-03-09  4:51 [Bug target/35512] New: [4.4 Regression]: gcc.target/ia64/visibility-1.c hjl dot tools at gmail dot com
                   ` (3 preceding siblings ...)
  2008-03-18  4:06 ` wilson at gcc dot gnu dot org
@ 2008-03-18  4:07 ` wilson at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: wilson at gcc dot gnu dot org @ 2008-03-18  4:07 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from wilson at gcc dot gnu dot org  2008-03-18 04:06 -------
Fixed.


-- 

wilson at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED


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


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

end of thread, other threads:[~2008-03-18  4:07 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-03-09  4:51 [Bug target/35512] New: [4.4 Regression]: gcc.target/ia64/visibility-1.c hjl dot tools at gmail dot com
2008-03-09  4:58 ` [Bug testsuite/35512] " pinskia at gcc dot gnu dot org
2008-03-11 12:03 ` pinskia at gcc dot gnu dot org
2008-03-18  4:02 ` wilson at gcc dot gnu dot org
2008-03-18  4:06 ` wilson at gcc dot gnu dot org
2008-03-18  4:07 ` wilson at gcc dot gnu dot org

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).