aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-04-13 06:15:51 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-04-13 06:15:51 +0000
commit556a791ce48ed0fe19f3ee94e2aec778b20b8e67 (patch)
tree71abc47cc606e963e4675b991e4eca95ef709362 /gcc
parentbec4464718f7316ea13a4e61cd2b57d0cd2ad4aa (diff)
downloadgcc-556a791ce48ed0fe19f3ee94e2aec778b20b8e67.zip
gcc-556a791ce48ed0fe19f3ee94e2aec778b20b8e67.tar.gz
gcc-556a791ce48ed0fe19f3ee94e2aec778b20b8e67.tar.bz2
* tree-inline.c (INSNS_PER_STMT): Remove.
From-SVN: r98073
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog2
-rw-r--r--gcc/tree-inline.c5
2 files changed, 2 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 7fbb813..b24d5b2 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -12,6 +12,8 @@
(tree_ssa_forward_propagate_single_use_vars): Call
forward_propagate_into_cond for each COND_EXPR.
+ * tree-inline.c (INSNS_PER_STMT): Remove.
+
2005-04-12 Richard Henderson <rth@redhat.com>
* config/i386/i386.c (ix86_prepare_sse_fp_compare_args): Split ...
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c
index efa6e31..9f24b88 100644
--- a/gcc/tree-inline.c
+++ b/gcc/tree-inline.c
@@ -117,11 +117,6 @@ typedef struct inline_data
/* Prototypes. */
-/* The approximate number of instructions per statement. This number
- need not be particularly accurate; it is used only to make
- decisions about when a function is too big to inline. */
-#define INSNS_PER_STMT (10)
-
static tree copy_body_r (tree *, int *, void *);
static tree copy_body (inline_data *);
static tree expand_call_inline (tree *, int *, void *);