Commit 32c03bfb by Richard Kenner

(assemble_real): Handle TQFmode output.

From-SVN: r7734
parent 03747aa3
......@@ -1722,6 +1722,11 @@ assemble_real (d, mode)
ASM_OUTPUT_SHORT_FLOAT (asm_out_file, d);
break;
#endif
#ifdef ASM_OUTPUT_THREE_QUARTER_FLOAT
case TQFmode:
ASM_OUTPUT_THREE_QUARTER_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