From a78cb98668d4a97f089f740f403b45c7a6df956d Mon Sep 17 00:00:00 2001 From: Stan Cox Date: Mon, 30 Sep 1996 19:23:11 +0000 Subject: [PATCH] i386.md (gen_prologue_get_pc): Call the function created above. (divdf3): Added. From-SVN: r12877 --- gcc/config/i386/i386.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index a1480fbe604..81140bb9a82 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -3418,6 +3418,13 @@ "TARGET_80387" "") +(define_expand "divdf3" + [(set (match_operand:DF 0 "register_operand" "") + (div:DF (match_operand:DF 1 "register_operand" "") + (match_operand:DF 2 "nonimmediate_operand" "")))] + "TARGET_80387" + "") + (define_expand "divsf3" [(set (match_operand:SF 0 "register_operand" "") (div:SF (match_operand:SF 1 "register_operand" "") @@ -6053,8 +6060,7 @@ { char buffer[64]; - sprintf (buffer, \"call .L%d\", INTVAL (operands[1])); - output_asm_insn (buffer, operands); + output_asm_insn (AS1 (call,%P1), operands); if (! TARGET_DEEP_BRANCH_PREDICTION) { ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, \"L\", INTVAL (operands[1])); -- 2.30.2