diff options
author | John David Anglin <dave.anglin@nrc-cnrc.gc.ca> | 2008-09-03 22:50:07 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2008-09-03 22:50:07 +0000 |
commit | d1fe519cb8d2a7520ddf17e8bba2f96f943db62b (patch) | |
tree | 1a3e574b10c05c3809895efb803234677909024b /gcc | |
parent | 1ced1970821f150701d696b948bce051d86de2e4 (diff) | |
download | gcc-d1fe519cb8d2a7520ddf17e8bba2f96f943db62b.zip gcc-d1fe519cb8d2a7520ddf17e8bba2f96f943db62b.tar.gz gcc-d1fe519cb8d2a7520ddf17e8bba2f96f943db62b.tar.bz2 |
re PR testsuite/37325 (Visibility test fails)
PR testsuite/37325
* config/pa/pa64-hpux.h (ASM_OUTPUT_EXTERNAL_REAL): Call
default_elf_asm_output_external.
From-SVN: r139962
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/pa/pa64-hpux.h | 5 |
2 files changed, 9 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 90d5ef8..6bfa7ad 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2008-09-03 John David Anglin <dave.anglin@nrc.cnrc.gc.ca> + + PR testsuite/37325 + * config/pa/pa64-hpux.h (ASM_OUTPUT_EXTERNAL_REAL): Call + default_elf_asm_output_external. + 2008-09-03 Jeff Law <law@redhat.com> * h8300.c (expand_a_shift): Avoid invalid RTL sharing. diff --git a/gcc/config/pa/pa64-hpux.h b/gcc/config/pa/pa64-hpux.h index bad5b41..fa5ec3a 100644 --- a/gcc/config/pa/pa64-hpux.h +++ b/gcc/config/pa/pa64-hpux.h @@ -1,7 +1,7 @@ /* Definitions of target machine for GNU compiler, for HPs running HPUX using the 64bit runtime model. - Copyright (C) 1999, 2000, 2001, 2002, 2004, 2005, 2007 Free Software Foundation, - Inc. + Copyright (C) 1999, 2000, 2001, 2002, 2004, 2005, 2007, 2008 + Free Software Foundation, Inc. This file is part of GCC. @@ -217,6 +217,7 @@ do { \ ASM_OUTPUT_TYPE_DIRECTIVE (FILE, NAME, "function"); \ else \ ASM_OUTPUT_TYPE_DIRECTIVE (FILE, NAME, "object"); \ + default_elf_asm_output_external (FILE, DECL, NAME); \ } while (0) /* We need set the type for external libcalls. Also note that not all |