diff options
author | John David Anglin <dave@hiauly1.hia.nrc.ca> | 2002-03-28 23:13:01 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2002-03-28 23:13:01 +0000 |
commit | 279dccc5db570d56e327fa74361ecf593038433a (patch) | |
tree | 9c64c70845158c50ef3669c00f43a562e495a16d /gcc | |
parent | d15e67bc462ac4225e72792748d50b31d21c6552 (diff) | |
download | gcc-279dccc5db570d56e327fa74361ecf593038433a.zip gcc-279dccc5db570d56e327fa74361ecf593038433a.tar.gz gcc-279dccc5db570d56e327fa74361ecf593038433a.tar.bz2 |
* pa-linux.h (LOCAL_LABEL_PREFIX): Define.
From-SVN: r51530
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/pa/pa-linux.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4dbed16..5a8d6fc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-03-28 John David Anglin <dave@hiauly1.hia.nrc.ca> + + * pa-linux.h (LOCAL_LABEL_PREFIX): Define. + 2002-03-28 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> * doc/invoke.texi (Warning Options): Refer to C++ Dialect Options diff --git a/gcc/config/pa/pa-linux.h b/gcc/config/pa/pa-linux.h index 2f0ee02..f30a187 100644 --- a/gcc/config/pa/pa-linux.h +++ b/gcc/config/pa/pa-linux.h @@ -119,6 +119,10 @@ Boston, MA 02111-1307, USA. */ } \ while (0) +/* We want local labels to start with period if made with asm_fprintf. */ +#undef LOCAL_LABEL_PREFIX +#define LOCAL_LABEL_PREFIX "." + /* Define these to generate the Linux/ELF/SysV style of internal labels all the time - i.e. to be compatible with ASM_GENERATE_INTERNAL_LABEL in <elfos.h>. Compare these with the |