Commit e4a4d311 by Richard Kenner

(ASM_OUTPUT_ADDR_DIFF_ELT): Fix typo in label name.

From-SVN: r9114
parent 912b4fc3
...@@ -1396,9 +1396,8 @@ do { \ ...@@ -1396,9 +1396,8 @@ do { \
fprintf (FILE, "\t.long L%d\n", VALUE) fprintf (FILE, "\t.long L%d\n", VALUE)
/* This is how to output an element of a case-vector that is relative. */ /* 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) \ #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 /* This is how to output an assembler line
that says to advance the location counter that says to advance the location counter
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment