diff options
author | Andreas Schwab <schwab@suse.de> | 1999-09-07 08:10:42 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@gcc.gnu.org> | 1999-09-07 08:10:42 +0000 |
commit | d0f3d9c2ae460945575fd3d58eccdcb526a627ce (patch) | |
tree | 3452e7208e03671e2ff064cfc3ba9dfaa790e378 /gcc/final.c | |
parent | dbc632597605f4157bad1b5cfb071cef20530bf2 (diff) | |
download | gcc-d0f3d9c2ae460945575fd3d58eccdcb526a627ce.zip gcc-d0f3d9c2ae460945575fd3d58eccdcb526a627ce.tar.gz gcc-d0f3d9c2ae460945575fd3d58eccdcb526a627ce.tar.bz2 |
* final.c (shorten_branches): Fix last change.
From-SVN: r29160
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/final.c b/gcc/final.c index 706a308f..c760705 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -1027,7 +1027,7 @@ shorten_branches (first) max_labelno = max_label_num (); min_labelno = get_first_label_num (); - label_align = (struct label_alignment **) + label_align = (struct label_alignment *) xcalloc ((max_labelno - min_labelno + 1), sizeof (struct label_alignment)); uid_shuid = (int *) xmalloc (max_uid * sizeof *uid_shuid); |