This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Remove some of NOTE_INSN_* notes


Jan Hubicka <jh@suse.cz> writes:

> 	* expect.c (sjlj_emit_function_enter): Emit directly branch probability.

Breaks bootstrap on ia64.

../../gcc/except.c: In function 'sjlj_emit_function_enter':
../../gcc/except.c:1872: warning: unused variable 'note'

Checked in as obvious.

Andreas.

2006-11-12  Andreas Schwab  <schwab@suse.de>

	* except.c (sjlj_emit_function_enter): Remove unused variable.

Index: gcc/except.c
===================================================================
--- gcc/except.c	(revision 118722)
+++ gcc/except.c	(working copy)
@@ -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_l
 
 #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),

-- 
Andreas Schwab, SuSE Labs, schwab@suse.de
SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany
PGP key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]