Commit cbf5468f by Aldy Hernandez Committed by Aldy Hernandez

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

From-SVN: r48090
parent 1a3ab9e1
2001-12-16 Aldy Hernandez <aldyh@redhat.com> 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 * config/rs6000/rs6000.h (FUNCTION_ARG_REGNO_P): Change
ALTIVEC_ARG_MAX_REG to ALTIVEC_ARG_NUM_REG. ALTIVEC_ARG_MAX_REG to ALTIVEC_ARG_NUM_REG.
......
...@@ -885,7 +885,8 @@ static int ...@@ -885,7 +885,8 @@ static int
apply_args_size () apply_args_size ()
{ {
static int size = -1; static int size = -1;
int align, regno; int align;
unsigned int regno;
enum machine_mode mode; enum machine_mode mode;
/* The values computed by this function never change. */ /* The values computed by this function never change. */
......
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