projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b90faeb
)
Fix off by one error
author
Michael Meissner
<meissner@gcc.gnu.org>
Fri, 6 Jun 1997 21:33:41 +0000
(21:33 +0000)
committer
Michael Meissner
<meissner@gcc.gnu.org>
Fri, 6 Jun 1997 21:33:41 +0000
(21:33 +0000)
From-SVN: r14167
gcc/regclass.c
patch
|
blob
|
history
diff --git
a/gcc/regclass.c
b/gcc/regclass.c
index 358b7bb12967e76a1cf7c247a8f892fbe22c8af0..a8a1c6e730185cc393ba15e39a6f09dc9bd466eb 100644
(file)
--- a/
gcc/regclass.c
+++ b/
gcc/regclass.c
@@
-1668,7
+1668,7
@@
allocate_reg_info (num_regs, new_p, renumber_p)
int i;
int size_info;
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
like reg_renumber, etc. that use short will have to be found and lengthed