diff options
author | Jakub Jelinek <jakub@redhat.com> | 2008-10-21 00:58:10 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2008-10-21 00:58:10 +0200 |
commit | 658344f2e5175f55c61e47a005a06c26e5432315 (patch) | |
tree | fe21b9168e2b2c778cddf1298d376af4d7b47225 /gcc/tree-inline.c | |
parent | 8df67f4fe595411dfc28a71118fc8c74e65e700e (diff) | |
download | gcc-658344f2e5175f55c61e47a005a06c26e5432315.zip gcc-658344f2e5175f55c61e47a005a06c26e5432315.tar.gz gcc-658344f2e5175f55c61e47a005a06c26e5432315.tar.bz2 |
tree-inline.c (tree_inlinable_function_p): Remove tuples debugging hack.
* tree-inline.c (tree_inlinable_function_p): Remove tuples
debugging hack.
From-SVN: r141252
Diffstat (limited to 'gcc/tree-inline.c')
-rw-r--r-- | gcc/tree-inline.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index 69f0c80..33ccafd 100644 --- a/gcc/tree-inline.c +++ b/gcc/tree-inline.c @@ -2316,13 +2316,7 @@ declare_return_variable (copy_body_data *id, tree return_slot, tree modify_dest, bool tree_inlinable_function_p (tree fn) { - bool ret = inlinable_function_p (fn); - - if (getenv ("TUPLES_INLINE")) - fprintf (stderr, "Function %s is %sinlinable\n", get_name (fn), - ret ? "" : "not "); - - return ret; + return inlinable_function_p (fn); } static const char *inline_forbidden_reason; |