diff options
author | Michael Meissner <meissner@gcc.gnu.org> | 1997-06-02 22:05:38 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1997-06-02 22:05:38 +0000 |
commit | 39379e67c7d1f9f52e9531c815a79b24b649afe6 (patch) | |
tree | d28649d18416201742bfa6e0d658ac3243511920 /gcc/flow.c | |
parent | 2808652ac8344bb1c2c6d4a48578fd3fd7ec1d01 (diff) | |
download | gcc-39379e67c7d1f9f52e9531c815a79b24b649afe6.tar.gz |
Widen some short fields to int; Use allocate_reg_info to allocate the reg_renumber array
From-SVN: r14142
Diffstat (limited to 'gcc/flow.c')
-rw-r--r-- | gcc/flow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/flow.c b/gcc/flow.c index 12a9bf90641..355a35e90d6 100644 --- a/gcc/flow.c +++ b/gcc/flow.c @@ -1286,7 +1286,7 @@ allocate_for_life_analysis () information, explicitly reset it here. The allocation should have already happened on the previous reg_scan pass. Make sure in case some more registers were allocated. */ - allocate_reg_info (max_regno, FALSE); + allocate_reg_info (max_regno, FALSE, FALSE); for (i = 0; i < max_regno; i++) REG_N_SETS (i) = 0; |