Commit 8edfb249 by Richard Kenner

(ASM_OUTPUT_ADDR_DIFF_ELT): Use .double instead of .word.

From-SVN: r5167
parent 79bf94d3
...@@ -90,7 +90,7 @@ output_file_directive ((FILE), main_input_filename) ...@@ -90,7 +90,7 @@ output_file_directive ((FILE), main_input_filename)
#define ASM_OUTPUT_INTERNAL_LABEL(FILE,PREFIX,NUM) \ #define ASM_OUTPUT_INTERNAL_LABEL(FILE,PREFIX,NUM) \
fprintf (FILE, ".%s%d:\n", PREFIX, NUM) fprintf (FILE, ".%s%d:\n", PREFIX, NUM)
#define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, VALUE, REL) \ #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, VALUE, REL) \
fprintf (FILE, "\t.word .L%d-.LI%d\n", VALUE, REL) fprintf (FILE, "\t.double .L%d-.LI%d\n", VALUE, REL)
/* /*
* Different syntax for integer constants, double constants, and * Different syntax for integer constants, double constants, and
......
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