Commit e74a2201 by Richard Kenner

(expand_builtin, case BUILT_IN_FSQRT): Don't use asterisk in name of

`errno'.

From-SVN: r7695
parent 63c68bb7
...@@ -6894,7 +6894,7 @@ expand_builtin (exp, target, subtarget, mode, ignore) ...@@ -6894,7 +6894,7 @@ expand_builtin (exp, target, subtarget, mode, ignore)
rtx errno_rtx = GEN_ERRNO_RTX; rtx errno_rtx = GEN_ERRNO_RTX;
#else #else
rtx errno_rtx rtx errno_rtx
= gen_rtx (MEM, word_mode, gen_rtx (SYMBOL_REF, Pmode, "*errno")); = gen_rtx (MEM, word_mode, gen_rtx (SYMBOL_REF, Pmode, "errno"));
#endif #endif
emit_move_insn (errno_rtx, GEN_INT (TARGET_EDOM)); emit_move_insn (errno_rtx, GEN_INT (TARGET_EDOM));
......
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