mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00
Use the ARRAY_SIZE() macro where appropriate.
Change from v1: Avoid changing the existing coding style in certain files. Signed-off-by: Stuart Brady <stuart.brady@gmail.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6120 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
5626b017d6
commit
b1503cda1e
27 changed files with 54 additions and 60 deletions
|
@ -212,7 +212,7 @@ static void patch_reloc(uint8_t *code_ptr, int type,
|
|||
/* maximum number of register used for input function arguments */
|
||||
static int tcg_target_get_call_iarg_regs_count(int flags)
|
||||
{
|
||||
return sizeof (tcg_target_call_iarg_regs) / sizeof (tcg_target_call_iarg_regs[0]);
|
||||
return ARRAY_SIZE (tcg_target_call_iarg_regs);
|
||||
}
|
||||
|
||||
/* parse target specific constraints */
|
||||
|
|
|
@ -199,7 +199,7 @@ static void patch_reloc (uint8_t *code_ptr, int type,
|
|||
/* maximum number of register used for input function arguments */
|
||||
static int tcg_target_get_call_iarg_regs_count (int flags)
|
||||
{
|
||||
return sizeof (tcg_target_call_iarg_regs) / sizeof (tcg_target_call_iarg_regs[0]);
|
||||
return ARRAY_SIZE (tcg_target_call_iarg_regs);
|
||||
}
|
||||
|
||||
/* parse target specific constraints */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue