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>
* ra-build.c (compare_and_free_webs): Relax checking.
* config/rs6000/darwin.h (HOT_TEXT_SECTION_NAME): Define.
......
......@@ -1668,7 +1668,7 @@ expand_errno_check (exp, target)
{
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 ();
......@@ -1806,6 +1806,7 @@ expand_builtin_mathfn (exp, target, subtarget)
return 0;
}
if (errno_set)
expand_errno_check (exp, target);
/* Output the entire sequence. */
......@@ -1903,6 +1904,7 @@ expand_builtin_mathfn_2 (exp, target, subtarget)
return 0;
}
if (errno_set)
expand_errno_check (exp, target);
/* Output the entire sequence. */
......
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