Commit da52a069 by Roger Sayle Committed by Roger Sayle

* builtins.c: Fix failures caused by commit of the wrong patch.

From-SVN: r62727
parent d58f6584
2003-02-11 Roger Sayle <roger@eyesopen.com>
* builtins.c: Fix failure caused by commiting wrong patch.
2003-02-11 Dale Johannesen <dalej@apple.com> 2003-02-11 Dale Johannesen <dalej@apple.com>
* ra-build.c (compare_and_free_webs): Relax checking. * ra-build.c (compare_and_free_webs): Relax checking.
* config/rs6000/darwin.h (HOT_TEXT_SECTION_NAME): Define. * config/rs6000/darwin.h (HOT_TEXT_SECTION_NAME): Define.
......
...@@ -1668,7 +1668,7 @@ expand_errno_check (exp, target) ...@@ -1668,7 +1668,7 @@ expand_errno_check (exp, target)
{ {
rtx lab; rtx lab;
if (flag_errno_math && errno_set && HONOR_NANS (GET_MODE (target))) if (flag_errno_math && HONOR_NANS (GET_MODE (target)))
{ {
lab = gen_label_rtx (); lab = gen_label_rtx ();
...@@ -1806,7 +1806,8 @@ expand_builtin_mathfn (exp, target, subtarget) ...@@ -1806,7 +1806,8 @@ expand_builtin_mathfn (exp, target, subtarget)
return 0; return 0;
} }
expand_errno_check (exp, target); if (errno_set)
expand_errno_check (exp, target);
/* Output the entire sequence. */ /* Output the entire sequence. */
insns = get_insns (); insns = get_insns ();
...@@ -1903,7 +1904,8 @@ expand_builtin_mathfn_2 (exp, target, subtarget) ...@@ -1903,7 +1904,8 @@ expand_builtin_mathfn_2 (exp, target, subtarget)
return 0; return 0;
} }
expand_errno_check (exp, target); if (errno_set)
expand_errno_check (exp, target);
/* Output the entire sequence. */ /* Output the entire sequence. */
insns = get_insns (); insns = get_insns ();
......
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