diff options
author | Nick Clifton <nickc@cygnus.com> | 1999-06-02 08:46:55 +0000 |
---|---|---|
committer | Nick Clifton <nickc@gcc.gnu.org> | 1999-06-02 08:46:55 +0000 |
commit | c237e586270fd3e4fe9feb0fa1826ddc92225d14 (patch) | |
tree | 21e0f623db2b4c938f5996404c56ca9dc80be7df /gcc | |
parent | bb78620135b06309e9cec542d79a6cfba8054988 (diff) | |
download | gcc-c237e586270fd3e4fe9feb0fa1826ddc92225d14.zip gcc-c237e586270fd3e4fe9feb0fa1826ddc92225d14.tar.gz gcc-c237e586270fd3e4fe9feb0fa1826ddc92225d14.tar.bz2 |
Synchronise definitions of USER_LABEL_PREFIX
From-SVN: r27313
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/arm/coff.h | 1 | ||||
-rw-r--r-- | gcc/config/arm/tcoff.h | 8 |
3 files changed, 11 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d474df6..7c4dd2b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +Wed Jun 2 08:42:55 1999 Nick Clifton <nickc@cygnus.com> + + * config/arm/tcoff.h (USER_LABEL_PREFIX): Synchronise with + definition in config/arm/coff.h + * config/arm/coff.h: Add comment about USER_LABEL_PREFIX. + Wed Jun 2 07:07 1999 Bruce Korb <ddsinc09@ix.netcom.com *fixinc/fixincl.c(global def): Add FD_SHELL_SCRIPT to mark diff --git a/gcc/config/arm/coff.h b/gcc/config/arm/coff.h index 221c7e0..ed4511a 100644 --- a/gcc/config/arm/coff.h +++ b/gcc/config/arm/coff.h @@ -23,6 +23,7 @@ Boston, MA 02111-1307, USA. */ #include "arm/semi.h" #include "arm/aout.h" +/* Note - it is important that this definition matches the one in tcoff.h */ #undef USER_LABEL_PREFIX #define USER_LABEL_PREFIX "_" diff --git a/gcc/config/arm/tcoff.h b/gcc/config/arm/tcoff.h index 6fa4705..ece0ea4 100644 --- a/gcc/config/arm/tcoff.h +++ b/gcc/config/arm/tcoff.h @@ -44,12 +44,12 @@ extern int arm_structure_size_boundary; #include "dbxcoff.h" -/* Note - it is important that these definitions match those in semi.h for the ARM port. */ -#undef LOCAL_LABEL_PREFIX +#undef LOCAL_LABEL_PREFIX #define LOCAL_LABEL_PREFIX "." -#undef USER_LABEL_PREFIX -#define USER_LABEL_PREFIX "" +/* Note - it is important that this definition matches the one in coff.h */ +#undef USER_LABEL_PREFIX +#define USER_LABEL_PREFIX "_" /* A C statement to output assembler commands which will identify the object file as having been compiled with GNU CC (or another GNU |