Commit 969e811d by Richard Stallman

(ASM_OUTPUT_DOUBLE): Use new REAL_VALUE... macros.

From-SVN: r3958
parent f29b2a44
...@@ -61,5 +61,8 @@ output_file_directive ((FILE), main_input_filename) ...@@ -61,5 +61,8 @@ output_file_directive ((FILE), main_input_filename)
} }
#undef ASM_OUTPUT_DOUBLE #undef ASM_OUTPUT_DOUBLE
#define ASM_OUTPUT_DOUBLE(FILE,VALUE) \ #define ASM_OUTPUT_DOUBLE(FILE,VALUE) \
fprintf (FILE, "\t.double 0d%.20e\n", (VALUE)) do { char dstr[30]; \
REAL_VALUE_TO_DECIMAL (VALUE, "%.20e", dstr); \
fprintf (FILE, "\t.double 0d%s\n", dstr); \
} while (0)
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