mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 06:43:53 -06:00
Use qemu_tolower() and qemu_toupper(), not tolower() and toupper()
On NetBSD, where tolower() and toupper() are implemented using an array lookup, the compiler warns if you pass a plain 'char' to these functions: gdbstub.c:914:13: warning: array subscript has type 'char' This reflects the fact that toupper() and tolower() give undefined behaviour if they are passed a value that isn't a valid 'unsigned char' or EOF. We have qemu_tolower() and qemu_toupper() to avoid this problem; use them. (The use in scsi-generic.c does not trigger the warning because it passes a uint8_t; we switch it anyway, for consistency.) Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Richard Henderson <rth@twiddle.net> Acked-by: Christian Borntraeger <borntraeger@de.ibm.com> for the s390 part. Acked-by: David Gibson <david@gibson.dropbear.id.au> Message-id: 1500568290-7966-1-git-send-email-peter.maydell@linaro.org
This commit is contained in:
parent
02ffa034fb
commit
95a5befc2f
4 changed files with 5 additions and 5 deletions
|
@ -115,14 +115,14 @@ int target_get_monitor_def(CPUState *cs, const char *name, uint64_t *pval)
|
|||
CPUPPCState *env = &cpu->env;
|
||||
|
||||
/* General purpose registers */
|
||||
if ((tolower(name[0]) == 'r') &&
|
||||
if ((qemu_tolower(name[0]) == 'r') &&
|
||||
ppc_cpu_get_reg_num(name + 1, ARRAY_SIZE(env->gpr), ®num)) {
|
||||
*pval = env->gpr[regnum];
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Floating point registers */
|
||||
if ((tolower(name[0]) == 'f') &&
|
||||
if ((qemu_tolower(name[0]) == 'f') &&
|
||||
ppc_cpu_get_reg_num(name + 1, ARRAY_SIZE(env->fpr), ®num)) {
|
||||
*pval = env->fpr[regnum];
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue