diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-11-11 17:43:45 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-11-11 17:43:45 +0000 |
commit | 56f9dcaf0861cd7075dcbbc6d2c17976c9454575 (patch) | |
tree | bd72c80fc5bdc7ec2f8047c9b1d0e04dde94f847 /gcc/cgraph.c | |
parent | 8f50e9faca08c9113067011e08f1f83d877f21c5 (diff) | |
download | gcc-56f9dcaf0861cd7075dcbbc6d2c17976c9454575.tar.gz |
* cgraphunit.c (cgraph_function_possibly_inlined_p): Use
really_no_inline.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73454 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraph.c')
-rw-r--r-- | gcc/cgraph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cgraph.c b/gcc/cgraph.c index 5daea448500..51ea93a0f33 100644 --- a/gcc/cgraph.c +++ b/gcc/cgraph.c @@ -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; } |