diff options
author | Geoffrey Keating <geoffk@gcc.gnu.org> | 2000-02-11 19:27:00 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2000-02-11 19:27:00 +0000 |
commit | 3db18f599e3210129a417605fad494b271650dee (patch) | |
tree | 8ee600ed3ba7575aee4241cd430ddd6985cab70b | |
parent | 136b5d77fc26a99e0fadc748e42c883dd3edf46f (diff) | |
download | gcc-3db18f599e3210129a417605fad494b271650dee.zip gcc-3db18f599e3210129a417605fad494b271650dee.tar.gz gcc-3db18f599e3210129a417605fad494b271650dee.tar.bz2 |
* haifa-sched.c (BUF_LEN): Increase a lot.
From-SVN: r31927
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/haifa-sched.c | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 17feeb6..e584538 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-02-11 Geoff Keating <geoffk@cygnus.com> + + * haifa-sched.c (BUF_LEN): Increase a lot. + 2000-02-11 Nick Clifton <nickc@cygnus.com> * configure.in: Add tm_p_file specification for thumb targets. @@ -9,7 +13,8 @@ 2000-02-11 Robert Lipe <robertl@sco.com> * Makefile.in (bootstrap-lean): Remove additional files. - (bootstrap2-lean): Likewise. (VOL_FILES): List of files for above. + (bootstrap2-lean): Likewise. + (VOL_FILES): List of files for above. 2000-02-11 Nathan Sidwell <nathan@acm.org> diff --git a/gcc/haifa-sched.c b/gcc/haifa-sched.c index 8def49f..be7dc48 100644 --- a/gcc/haifa-sched.c +++ b/gcc/haifa-sched.c @@ -4817,7 +4817,7 @@ init_block_visualization () n_vis_no_unit = 0; } -#define BUF_LEN 256 +#define BUF_LEN 2048 static char * safe_concat (buf, cur, str) |