Commit cc515291 by Jan Hubicka Committed by Jan Hubicka

cgraphunit.c (cgraph_function_possibly_inlined_p): Use really_no_inline.

	* cgraphunit.c (cgraph_function_possibly_inlined_p): Use
	really_no_inline.

From-SVN: r73454
parent 009ed5cc
2003-11-11 Jan Hubicka <jh@suse.cz>
* cgraphunit.c (cgraph_function_possibly_inlined_p): Use
really_no_inline.
2003-11-11 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> 2003-11-11 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
* pa.h (TRAMPOLINE_TEMPLATE): Fix flushing of cache lines when * pa.h (TRAMPOLINE_TEMPLATE): Fix flushing of cache lines when
......
...@@ -536,7 +536,7 @@ bool ...@@ -536,7 +536,7 @@ bool
cgraph_function_possibly_inlined_p (tree decl) cgraph_function_possibly_inlined_p (tree decl)
{ {
if (!cgraph_global_info_ready) if (!cgraph_global_info_ready)
return (DECL_INLINE (decl) && !flag_no_inline); return (DECL_INLINE (decl) && !flag_really_no_inline);
return cgraph_node (decl)->global.inlined; return cgraph_node (decl)->global.inlined;
} }
......
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