Commit 7ec189f2 by Michael Meissner

Fix off by one error

From-SVN: r14167
parent b90faeb7
...@@ -1668,7 +1668,7 @@ allocate_reg_info (num_regs, new_p, renumber_p) ...@@ -1668,7 +1668,7 @@ allocate_reg_info (num_regs, new_p, renumber_p)
int i; int i;
int size_info; int size_info;
int size_renumber; int size_renumber;
int min = (new_p) ? 0 : regno_max+1; int min = (new_p) ? 0 : regno_max;
/* If this message come up, and you want to fix it, then all of the tables /* If this message come up, and you want to fix it, then all of the tables
like reg_renumber, etc. that use short will have to be found and lengthed like reg_renumber, etc. that use short will have to be found and lengthed
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment