diff options
author | Jeffrey A Law <law@cygnus.com> | 1999-01-06 22:40:19 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-01-06 15:40:19 -0700 |
commit | ee65dab8419efd872b531721a280b74d9b2866f0 (patch) | |
tree | 3dfbd127f009214053b75d81c50692138ee0be11 /gcc | |
parent | 01f76283740de01c0f4ad88592b6dad915ceebb2 (diff) | |
download | gcc-ee65dab8419efd872b531721a280b74d9b2866f0.zip gcc-ee65dab8419efd872b531721a280b74d9b2866f0.tar.gz gcc-ee65dab8419efd872b531721a280b74d9b2866f0.tar.bz2 |
* h8300.h (ASM_OUTPUT_LABELREF): Define.
From-SVN: r24544
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/config/h8300/h8300.h | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c9d88a9..0afa05b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -19,6 +19,8 @@ Wed Jan 6 17:55:19 1999 Robert Lipe <robertlipe@usa.net> Wed Jan 6 16:08:54 1999 Jeffrey A Law (law@cygnus.com) + * h8300.h (ASM_OUTPUT_LABELREF): Define. + * pa.h (DONT_RECORD_EQUIVALENCE): Kill. * local-alloc.c (update_equiv_regs): Corresponding changes. * tm.texi (DONT_RECORD_EQUIVALENCE): Kill. diff --git a/gcc/config/h8300/h8300.h b/gcc/config/h8300/h8300.h index 8f617ae..110df32 100644 --- a/gcc/config/h8300/h8300.h +++ b/gcc/config/h8300/h8300.h @@ -1186,6 +1186,9 @@ readonly_data() \ #define ASM_OUTPUT_LABEL(FILE, NAME) \ do { assemble_name (FILE, NAME); fputs (":\n", FILE); } while (0) +#define ASM_OUTPUT_LABELREF(FILE,NAME) \ + fprintf ((FILE), "%U%s", (NAME) + (TINY_DATA_NAME_P (NAME) ? 1 : 0)) + #define ASM_OUTPUT_EXTERNAL(FILE, DECL, NAME) /* This is how to output a command to make the user-level label named NAME |