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
This commit is contained in:
Jan Hubicka 2003-11-11 18:43:45 +01:00 committed by Jan Hubicka
parent 009ed5cc5c
commit cc515291bf
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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>
* pa.h (TRAMPOLINE_TEMPLATE): Fix flushing of cache lines when

View File

@ -536,7 +536,7 @@ bool
cgraph_function_possibly_inlined_p (tree decl)
{
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;
}