public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug testsuite/37325]  New: Visibility test fails
@ 2008-09-01 20:05 danglin at gcc dot gnu dot org
  2008-09-02 11:35 ` [Bug testsuite/37325] [4.4 Regression] " rguenth at gcc dot gnu dot org
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: danglin at gcc dot gnu dot org @ 2008-09-01 20:05 UTC (permalink / raw)
  To: gcc-bugs

FAIL: gcc.dg/visibility-14.c scan-hidden hidden[ \t_]*foo
FAIL: gcc.dg/visibility-15.c scan-hidden hidden[ \t_]*foo
FAIL: gcc.dg/visibility-16.c scan-hidden hidden[ \t_]*foo
FAIL: gcc.dg/visibility-17.c scan-hidden hidden[ \t_]*foo
FAIL: gcc.dg/visibility-18.c scan-hidden hidden[ \t_]*foo
FAIL: gcc.dg/visibility-19.c scan-hidden hidden[ \t_]*foo


-- 
           Summary: Visibility test fails
           Product: gcc
           Version: 4.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: testsuite
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: danglin at gcc dot gnu dot org
 GCC build triplet: hppa64-hp-hpux11.11
  GCC host triplet: hppa64-hp-hpux11.11
GCC target triplet: hppa64-hp-hpux11.11


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


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

* [Bug testsuite/37325] [4.4 Regression] Visibility test fails
  2008-09-01 20:05 [Bug testsuite/37325] New: Visibility test fails danglin at gcc dot gnu dot org
@ 2008-09-02 11:35 ` rguenth at gcc dot gnu dot org
  2008-09-02 14:59 ` dave at hiauly1 dot hia dot nrc dot ca
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-09-02 11:35 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from rguenth at gcc dot gnu dot org  2008-09-02 11:34 -------
I suppose a regression?


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|Visibility test fails       |[4.4 Regression] Visibility
                   |                            |test fails
   Target Milestone|---                         |4.4.0


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


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

* [Bug testsuite/37325] [4.4 Regression] Visibility test fails
  2008-09-01 20:05 [Bug testsuite/37325] New: Visibility test fails danglin at gcc dot gnu dot org
  2008-09-02 11:35 ` [Bug testsuite/37325] [4.4 Regression] " rguenth at gcc dot gnu dot org
@ 2008-09-02 14:59 ` dave at hiauly1 dot hia dot nrc dot ca
  2008-09-02 16:27 ` dave at hiauly1 dot hia dot nrc dot ca
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: dave at hiauly1 dot hia dot nrc dot ca @ 2008-09-02 14:59 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from dave at hiauly1 dot hia dot nrc dot ca  2008-09-02 14:57 -------
Subject: Re:  [4.4 Regression] Visibility test fails

> I suppose a regression?

No, the tests are new.  I'll have to check the assembly output to
see why they are failing.

Dave


-- 


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


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

* [Bug testsuite/37325] [4.4 Regression] Visibility test fails
  2008-09-01 20:05 [Bug testsuite/37325] New: Visibility test fails danglin at gcc dot gnu dot org
  2008-09-02 11:35 ` [Bug testsuite/37325] [4.4 Regression] " rguenth at gcc dot gnu dot org
  2008-09-02 14:59 ` dave at hiauly1 dot hia dot nrc dot ca
@ 2008-09-02 16:27 ` dave at hiauly1 dot hia dot nrc dot ca
  2008-09-02 19:54 ` dave at hiauly1 dot hia dot nrc dot ca
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: dave at hiauly1 dot hia dot nrc dot ca @ 2008-09-02 16:27 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from dave at hiauly1 dot hia dot nrc dot ca  2008-09-02 16:25 -------
Subject: Re:  [4.4 Regression] Visibility test fails

> No, the tests are new.  I'll have to check the assembly output to
> see why they are failing.

Checked visibility-14.c.  The .hidden directive is not being emitted.
Same with gcc 4.3.2.  See

/* Define if your assembler and linker support .hidden. */
#define HAVE_GAS_HIDDEN 1

in auto-host.h.

Dave


-- 


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


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

* [Bug testsuite/37325] [4.4 Regression] Visibility test fails
  2008-09-01 20:05 [Bug testsuite/37325] New: Visibility test fails danglin at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2008-09-02 16:27 ` dave at hiauly1 dot hia dot nrc dot ca
@ 2008-09-02 19:54 ` dave at hiauly1 dot hia dot nrc dot ca
  2008-09-02 19:59 ` pinskia at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: dave at hiauly1 dot hia dot nrc dot ca @ 2008-09-02 19:54 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from dave at hiauly1 dot hia dot nrc dot ca  2008-09-02 19:52 -------
Subject: Re:  [4.4 Regression] Visibility test fails

> 
> Checked visibility-14.c.  The .hidden directive is not being emitted.

I'm not sure why a .hidden directive should be expected in this case
as foo does not bind locally.

extern void foo(void) __attribute__ ((visibility ("hidden")));
int f () {
 foo();
}

Dave


-- 


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


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

* [Bug testsuite/37325] [4.4 Regression] Visibility test fails
  2008-09-01 20:05 [Bug testsuite/37325] New: Visibility test fails danglin at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2008-09-02 19:54 ` dave at hiauly1 dot hia dot nrc dot ca
@ 2008-09-02 19:59 ` pinskia at gcc dot gnu dot org
  2008-09-03 22:52 ` danglin at gcc dot gnu dot org
  2008-09-03 22:59 ` danglin at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-09-02 19:59 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from pinskia at gcc dot gnu dot org  2008-09-02 19:58 -------
For elf targets, default_elf_asm_output_external should be called.


-- 


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


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

* [Bug testsuite/37325] [4.4 Regression] Visibility test fails
  2008-09-01 20:05 [Bug testsuite/37325] New: Visibility test fails danglin at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2008-09-02 19:59 ` pinskia at gcc dot gnu dot org
@ 2008-09-03 22:52 ` danglin at gcc dot gnu dot org
  2008-09-03 22:59 ` danglin at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: danglin at gcc dot gnu dot org @ 2008-09-03 22:52 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from danglin at gcc dot gnu dot org  2008-09-03 22:51 -------
Subject: Bug 37325

Author: danglin
Date: Wed Sep  3 22:50:07 2008
New Revision: 139962

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=139962
Log:
        PR testsuite/37325
        * config/pa/pa64-hpux.h (ASM_OUTPUT_EXTERNAL_REAL): Call
        default_elf_asm_output_external.


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/pa/pa64-hpux.h


-- 


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


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

* [Bug testsuite/37325] [4.4 Regression] Visibility test fails
  2008-09-01 20:05 [Bug testsuite/37325] New: Visibility test fails danglin at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2008-09-03 22:52 ` danglin at gcc dot gnu dot org
@ 2008-09-03 22:59 ` danglin at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: danglin at gcc dot gnu dot org @ 2008-09-03 22:59 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from danglin at gcc dot gnu dot org  2008-09-03 22:58 -------
Fixed by change.


-- 

danglin at gcc dot gnu dot org changed:

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


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


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

end of thread, other threads:[~2008-09-03 22:59 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-09-01 20:05 [Bug testsuite/37325] New: Visibility test fails danglin at gcc dot gnu dot org
2008-09-02 11:35 ` [Bug testsuite/37325] [4.4 Regression] " rguenth at gcc dot gnu dot org
2008-09-02 14:59 ` dave at hiauly1 dot hia dot nrc dot ca
2008-09-02 16:27 ` dave at hiauly1 dot hia dot nrc dot ca
2008-09-02 19:54 ` dave at hiauly1 dot hia dot nrc dot ca
2008-09-02 19:59 ` pinskia at gcc dot gnu dot org
2008-09-03 22:52 ` danglin at gcc dot gnu dot org
2008-09-03 22:59 ` danglin 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).