diff options
| author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-10-20 22:58:10 +0000 |
|---|---|---|
| committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-10-20 22:58:10 +0000 |
| commit | a34e1c9660188df4cc9b52feed7ecb3e5c8e0a2f (patch) | |
| tree | fe21b9168e2b2c778cddf1298d376af4d7b47225 | |
| parent | 65ae88e6b5ffd25adbcd649b221fe66a884115b0 (diff) | |
| download | ppe42-gcc-a34e1c9660188df4cc9b52feed7ecb3e5c8e0a2f.tar.gz ppe42-gcc-a34e1c9660188df4cc9b52feed7ecb3e5c8e0a2f.zip | |
* tree-inline.c (tree_inlinable_function_p): Remove tuples
debugging hack.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@141252 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 3 | ||||
| -rw-r--r-- | gcc/tree-inline.c | 8 |
2 files changed, 4 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c55ccfaae0b..5e1026ec188 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2008-10-21 Jakub Jelinek <jakub@redhat.com> + * tree-inline.c (tree_inlinable_function_p): Remove tuples + debugging hack. + * gimplify.c (gimplify_expr): Drop TREE_OVERFLOW from INTEGER_CSTs. diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index 69f0c80c094..33ccafdb78c 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; |

