aboutsummaryrefslogtreecommitdiff
path: root/gcc/cgraph.c
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2003-11-11 18:43:45 +0100
committerJan Hubicka <hubicka@gcc.gnu.org>2003-11-11 17:43:45 +0000
commitcc515291bfabe7563333906c0740ba9aa96e87ee (patch)
treebd72c80fc5bdc7ec2f8047c9b1d0e04dde94f847 /gcc/cgraph.c
parent009ed5cc5c6a9a79925f4cd0a554844f0c6bc6e3 (diff)
downloadgcc-cc515291bfabe7563333906c0740ba9aa96e87ee.zip
gcc-cc515291bfabe7563333906c0740ba9aa96e87ee.tar.gz
gcc-cc515291bfabe7563333906c0740ba9aa96e87ee.tar.bz2
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
Diffstat (limited to 'gcc/cgraph.c')
-rw-r--r--gcc/cgraph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cgraph.c b/gcc/cgraph.c
index 5daea44..51ea93a 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;
}