mirror of git://gcc.gnu.org/git/gcc.git
genpreds.c (write_insn_constraint_len): Change definition of insn_constraint_len to return size_t to match the declaration.
* genpreds.c (write_insn_constraint_len): Change definition of insn_constraint_len to return size_t to match the declaration. From-SVN: r111940
This commit is contained in:
parent
8e4edce73f
commit
a859786636
|
|
@ -1,3 +1,8 @@
|
||||||
|
2006-03-10 Adam Nemet <anemet@caviumnetworks.com>
|
||||||
|
|
||||||
|
* genpreds.c (write_insn_constraint_len): Change definition of
|
||||||
|
insn_constraint_len to return size_t to match the declaration.
|
||||||
|
|
||||||
2006-03-10 DJ Delorie <dj@redhat.com>
|
2006-03-10 DJ Delorie <dj@redhat.com>
|
||||||
|
|
||||||
* config/m32c/m32c.c (m32c_const_ok_for_constraint_p): Bit numbers
|
* config/m32c/m32c.c (m32c_const_ok_for_constraint_p): Bit numbers
|
||||||
|
|
|
||||||
|
|
@ -904,7 +904,7 @@ write_insn_constraint_len (void)
|
||||||
if (constraint_max_namelen == 1)
|
if (constraint_max_namelen == 1)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
puts ("unsigned int\n"
|
puts ("size_t\n"
|
||||||
"insn_constraint_len (enum constraint_num c)\n"
|
"insn_constraint_len (enum constraint_num c)\n"
|
||||||
"{\n"
|
"{\n"
|
||||||
" switch (c)\n"
|
" switch (c)\n"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue