diff options
author | schwab <schwab@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-11-12 11:15:28 +0000 |
---|---|---|
committer | schwab <schwab@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-11-12 11:15:28 +0000 |
commit | 637f9626fc2856faadde00e989237c9edf52fd2a (patch) | |
tree | c30169f86eb1edaf07eab160e416af428e864cda /gcc/except.c | |
parent | 80bd72a50950f57eb0fd1ada5247195be5c777fb (diff) | |
download | gcc-637f9626fc2856faadde00e989237c9edf52fd2a.tar.gz |
* except.c (sjlj_emit_function_enter): Remove unused variable.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@118723 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/except.c')
-rw-r--r-- | gcc/except.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/except.c b/gcc/except.c index 4bfebcfdf99..c51307ba335 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -1,6 +1,6 @@ /* Implements exception handling. Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, - 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. + 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. Contributed by Mike Stump <mrs@cygnus.com>. This file is part of GCC. @@ -1869,7 +1869,7 @@ sjlj_emit_function_enter (rtx dispatch_label) #ifdef DONT_USE_BUILTIN_SETJMP { - rtx x, note; + rtx x; x = emit_library_call_value (setjmp_libfunc, NULL_RTX, LCT_RETURNS_TWICE, TYPE_MODE (integer_type_node), 1, plus_constant (XEXP (fc, 0), |