Commit 8d406e9d by Tom Wood

(ASM_OUTPUT_FLOAT_OPERAND): Use CODE.

From-SVN: r4110
parent 5fa63f2a
......@@ -99,7 +99,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
do { \
long hex; \
REAL_VALUE_TO_TARGET_SINGLE (VALUE, hex); \
fprintf (FILE, "#0b%x", hex); \
fprintf (FILE, "#0%c%x", (CODE) == 'f' ? 'b' : 'x', hex); \
} while (0)
#else
#define ASM_OUTPUT_FLOAT_OPERAND(CODE,FILE,VALUE) \
......
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