* tree-inline.c (tree_inlinable_function_p): Remove tuples
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 20 Oct 2008 22:58:10 +0000 (22:58 +0000)
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 20 Oct 2008 22:58:10 +0000 (22:58 +0000)
debugging hack.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@141252 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/tree-inline.c

index c55ccfa..5e1026e 100644 (file)
@@ -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.
 
index 69f0c80..33ccafd 100644 (file)
@@ -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;