Commit c26238f4 by Rainer Orth Committed by Rainer Orth

cfg.c (alloc_aux_for_block): Remove inline.

	* cfg.c (alloc_aux_for_block): Remove inline.
	(alloc_aux_for_edge): Likewise.

From-SVN: r157045
parent bef64e0f
2010-02-24 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> 2010-02-24 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* cfg.c (alloc_aux_for_block): Remove inline.
(alloc_aux_for_edge): Likewise.
2010-02-24 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* config.gcc: Fix typo in mips-sgi-irix6.[0-4]* obsoletion. * config.gcc: Fix typo in mips-sgi-irix6.[0-4]* obsoletion.
2010-02-24 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> 2010-02-24 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
......
/* Control flow graph manipulation code for GNU compiler. /* Control flow graph manipulation code for GNU compiler.
Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
Free Software Foundation, Inc. Free Software Foundation, Inc.
This file is part of GCC. This file is part of GCC.
...@@ -734,7 +734,7 @@ static void *first_edge_aux_obj = 0; ...@@ -734,7 +734,7 @@ static void *first_edge_aux_obj = 0;
/* Allocate a memory block of SIZE as BB->aux. The obstack must /* Allocate a memory block of SIZE as BB->aux. The obstack must
be first initialized by alloc_aux_for_blocks. */ be first initialized by alloc_aux_for_blocks. */
inline void void
alloc_aux_for_block (basic_block bb, int size) alloc_aux_for_block (basic_block bb, int size)
{ {
/* Verify that aux field is clear. */ /* Verify that aux field is clear. */
...@@ -797,7 +797,7 @@ free_aux_for_blocks (void) ...@@ -797,7 +797,7 @@ free_aux_for_blocks (void)
/* Allocate a memory edge of SIZE as BB->aux. The obstack must /* Allocate a memory edge of SIZE as BB->aux. The obstack must
be first initialized by alloc_aux_for_edges. */ be first initialized by alloc_aux_for_edges. */
inline void void
alloc_aux_for_edge (edge e, int size) alloc_aux_for_edge (edge e, int size)
{ {
/* Verify that aux field is clear. */ /* Verify that aux field is clear. */
......
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