* builtins.c (apply_args_size): Change regno to unsigned.

From-SVN: r48090
This commit is contained in:
Aldy Hernandez 2001-12-17 06:12:34 +00:00 committed by Aldy Hernandez
parent 1a3ab9e1ad
commit cbf5468fd2
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-12-16 Aldy Hernandez <aldyh@redhat.com>
* builtins.c (apply_args_size): Change regno to unsigned.
2001-12-16 Aldy Hernandez <aldyh@redhat.com>
* config/rs6000/rs6000.h (FUNCTION_ARG_REGNO_P): Change

View File

@ -885,7 +885,8 @@ static int
apply_args_size ()
{
static int size = -1;
int align, regno;
int align;
unsigned int regno;
enum machine_mode mode;
/* The values computed by this function never change. */