diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-13 15:53:13 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-13 15:53:13 +0000 |
commit | 7511b819eb582fed44ce4b2f2793184579e4f723 (patch) | |
tree | 6c51fec0e3a1b87a3b5b966edabc910d8b1753a5 | |
parent | 2426241c42dd04efdf07db3e669651fa5a85774a (diff) | |
download | gcc-7511b819eb582fed44ce4b2f2793184579e4f723.tar.gz |
* 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
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/builtins.c | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0fd69f9f347..9bdb2952d7f 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 <HutchinsonAndy@netscape.net> PR target/18251 diff --git a/gcc/builtins.c b/gcc/builtins.c index 0185c676bf6..c239d6ca57f 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; |