aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1992-08-25 21:36:10 +0000
committerRichard Stallman <rms@gnu.org>1992-08-25 21:36:10 +0000
commite939539ba6ecb082e0352bca5026c7c9e9850716 (patch)
tree1cf9356a8463f954506b6bab070ec8aa268ef333 /gcc
parent789d0ee5158112e6d6508cb2eaf6eda15dd5b836 (diff)
downloadgcc-e939539ba6ecb082e0352bca5026c7c9e9850716.zip
gcc-e939539ba6ecb082e0352bca5026c7c9e9850716.tar.gz
gcc-e939539ba6ecb082e0352bca5026c7c9e9850716.tar.bz2
(INSN_QUEUE_SIZE): Add default definition.
From-SVN: r1954
Diffstat (limited to 'gcc')
-rw-r--r--gcc/sched.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/sched.c b/gcc/sched.c
index 05c8a12..f10ee70 100644
--- a/gcc/sched.c
+++ b/gcc/sched.c
@@ -267,6 +267,9 @@ static rtx dead_notes;
time has passed. INSN_QUEUE_SIZE is a power of two larger than
MAX_BLOCKAGE and MAX_READY_COST computed by genattr.c. This is the
longest time an isnsn may be queued. */
+#ifndef INSN_QUEUE_SIZE
+#define INSN_QUEUE_SIZE 10
+#endif
static rtx insn_queue[INSN_QUEUE_SIZE];
static int q_ptr = 0;
static int q_size = 0;