public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/20045] New: gcc.dg/ia64-fptr-1.c fails on ia64-hpux
@ 2005-02-18 12:20 jsm28 at gcc dot gnu dot org
  2005-02-18 20:53 ` [Bug target/20045] " pinskia at gcc dot gnu dot org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2005-02-18 12:20 UTC (permalink / raw)
  To: gcc-bugs

The test gcc.dg/ia64-fptr-1.c fails on ia64-hpux.  Not a regression
relative to 3.4.x.

ld: Unsatisfied symbol "_GLOBAL_OFFSET_TABLE_" in file /var/tmp//ccU3vrUt.o

-- 
           Summary: gcc.dg/ia64-fptr-1.c fails on ia64-hpux
           Product: gcc
           Version: 4.0.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: target
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: jsm28 at gcc dot gnu dot org
                CC: gcc-bugs at gcc dot gnu dot org
GCC target triplet: ia64-*-hpux11.*


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


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

* [Bug target/20045] gcc.dg/ia64-fptr-1.c fails on ia64-hpux
  2005-02-18 12:20 [Bug target/20045] New: gcc.dg/ia64-fptr-1.c fails on ia64-hpux jsm28 at gcc dot gnu dot org
@ 2005-02-18 20:53 ` pinskia at gcc dot gnu dot org
  2005-02-20 10:54 ` wilson at specifixinc dot com
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-02-18 20:53 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-02-18 14:57 -------
I think this testcase should only be testing on ia64-*-linux*

-- 


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


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

* [Bug target/20045] gcc.dg/ia64-fptr-1.c fails on ia64-hpux
  2005-02-18 12:20 [Bug target/20045] New: gcc.dg/ia64-fptr-1.c fails on ia64-hpux jsm28 at gcc dot gnu dot org
  2005-02-18 20:53 ` [Bug target/20045] " pinskia at gcc dot gnu dot org
@ 2005-02-20 10:54 ` wilson at specifixinc dot com
  2005-03-31 16:53 ` cvs-commit at gcc dot gnu dot org
  2005-03-31 17:04 ` sje at cup dot hp dot com
  3 siblings, 0 replies; 5+ messages in thread
From: wilson at specifixinc dot com @ 2005-02-20 10:54 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From wilson at specifixinc dot com  2005-02-19 23:31 -------
Subject: Re:  New: gcc.dg/ia64-fptr-1.c fails on ia64-hpux

jsm28 at gcc dot gnu dot org wrote:
> ld: Unsatisfied symbol "_GLOBAL_OFFSET_TABLE_" in file /var/tmp//ccU3vrUt.o

DT_PLTGOT will hold the gp value if the program was dynamically linked, 
but it might be too inconvenient to get to this value.  I am not sure 
how to get it other than by running objdump and grepping the output. 
Otherwise, I don't believe the ABI provides a way to get at the value.

Another solution is to use an asm to grab the value from r1.  This 
should work fine as the functions are in the same module, and hence will 
use the same gp value.

Or we could just make this a linux specific testcase.


-- 


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


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

* [Bug target/20045] gcc.dg/ia64-fptr-1.c fails on ia64-hpux
  2005-02-18 12:20 [Bug target/20045] New: gcc.dg/ia64-fptr-1.c fails on ia64-hpux jsm28 at gcc dot gnu dot org
  2005-02-18 20:53 ` [Bug target/20045] " pinskia at gcc dot gnu dot org
  2005-02-20 10:54 ` wilson at specifixinc dot com
@ 2005-03-31 16:53 ` cvs-commit at gcc dot gnu dot org
  2005-03-31 17:04 ` sje at cup dot hp dot com
  3 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-03-31 16:53 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-03-31 16:53 -------
Subject: Bug 20045

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	sje@gcc.gnu.org	2005-03-31 16:53:19

Modified files:
	gcc/testsuite  : ChangeLog 
	gcc/testsuite/gcc.dg: ia64-fptr-1.c 

Log message:
	PR target/20045
	* gcc.dg/ia64-fptr-1.c: Run only on linux.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.5244&r2=1.5245
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gcc.dg/ia64-fptr-1.c.diff?cvsroot=gcc&r1=1.1&r2=1.2



-- 


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


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

* [Bug target/20045] gcc.dg/ia64-fptr-1.c fails on ia64-hpux
  2005-02-18 12:20 [Bug target/20045] New: gcc.dg/ia64-fptr-1.c fails on ia64-hpux jsm28 at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2005-03-31 16:53 ` cvs-commit at gcc dot gnu dot org
@ 2005-03-31 17:04 ` sje at cup dot hp dot com
  3 siblings, 0 replies; 5+ messages in thread
From: sje at cup dot hp dot com @ 2005-03-31 17:04 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From sje at cup dot hp dot com  2005-03-31 17:04 -------
Fixed by not running the test suite on HP-UX.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.1.0


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


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

end of thread, other threads:[~2005-03-31 17:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-02-18 12:20 [Bug target/20045] New: gcc.dg/ia64-fptr-1.c fails on ia64-hpux jsm28 at gcc dot gnu dot org
2005-02-18 20:53 ` [Bug target/20045] " pinskia at gcc dot gnu dot org
2005-02-20 10:54 ` wilson at specifixinc dot com
2005-03-31 16:53 ` cvs-commit at gcc dot gnu dot org
2005-03-31 17:04 ` sje at cup dot hp dot com

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