Commit b7526ea5 by Richard Stallman

(assemble_real): Use `ASM_OUTPUT_BYTE_FLOAT' and

`ASM_OUTPUT_SHORT_FLOAT' for QFmode and HFmode respectively.

From-SVN: r3136
parent 213062d0
......@@ -1213,6 +1213,16 @@ assemble_real (d, mode)
switch (mode)
{
#ifdef ASM_OUTPUT_BYTE_FLOAT
case QFmode:
ASM_OUTPUT_BYTE_FLOAT (asm_out_file, d);
break;
#endif
#ifdef ASM_OUTPUT_SHORT_FLOAT
case HFmode:
ASM_OUTPUT_SHORT_FLOAT (asm_out_file, d);
break;
#endif
#ifdef ASM_OUTPUT_FLOAT
case SFmode:
ASM_OUTPUT_FLOAT (asm_out_file, d);
......
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