From: kazu Date: Sun, 13 Mar 2005 15:53:13 +0000 (+0000) Subject: * builtins.c (expand_builtin_mathfn_3): Remove local variable X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7511b819eb582fed44ce4b2f2793184579e4f723;p=thirdparty%2Fgcc.git * builtins.c (expand_builtin_mathfn_3): Remove local variable before_call. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96372 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0fd69f9f3470..9bdb2952d7fb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -17,6 +17,9 @@ fold_builtin_signbit): Use TYPE (TYPE (fndecl)) instead of TREE_TYPE (exp). + * builtins.c (expand_builtin_mathfn_3): Remove local variable + before_call. + 2005-03-13 Andy Hutchinson PR target/18251 diff --git a/gcc/builtins.c b/gcc/builtins.c index 0185c676bf67..c239d6ca57f6 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -1990,7 +1990,7 @@ static rtx expand_builtin_mathfn_3 (tree exp, rtx target, rtx subtarget) { optab builtin_optab; - rtx op0, insns, before_call; + rtx op0, insns; tree fndecl = get_callee_fndecl (exp); tree arglist = TREE_OPERAND (exp, 1); enum machine_mode mode; @@ -2105,8 +2105,6 @@ expand_builtin_mathfn_3 (tree exp, rtx target, rtx subtarget) end_sequence (); } - before_call = get_last_insn (); - target = expand_call (exp, target, target == const0_rtx); return target;