diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-03-03 00:08:45 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-03-03 00:08:45 +0000 |
commit | 2ddc9ca28efd588b2e9e1ad7cf64582982b69282 (patch) | |
tree | 839d6683819de5e63c3b909dd575f30db52baa70 /gcc/config/ns32k | |
parent | 259f964ec698bb26cca9b8fc7df974263b56edda (diff) | |
download | gcc-2ddc9ca28efd588b2e9e1ad7cf64582982b69282.tar.gz |
(ASM_OUTPUT_ADDR_DIFF_ELT): Fix typo in label name.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9114 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/ns32k')
-rw-r--r-- | gcc/config/ns32k/ns32k.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/config/ns32k/ns32k.h b/gcc/config/ns32k/ns32k.h index ccf722754b5..e4eef7b697e 100644 --- a/gcc/config/ns32k/ns32k.h +++ b/gcc/config/ns32k/ns32k.h @@ -1396,9 +1396,8 @@ do { \ fprintf (FILE, "\t.long L%d\n", VALUE) /* This is how to output an element of a case-vector that is relative. */ -/* ** Notice that the second element is LI format! */ #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, VALUE, REL) \ - fprintf (FILE, "\t.long L%d-LI%d\n", VALUE, REL) + fprintf (FILE, "\t.long L%d-L%d\n", VALUE, REL) /* This is how to output an assembler line that says to advance the location counter |