mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-26 22:07:58 +08:00
* config/tc-sh.c (parse_reg): Match capital MACH and MACL.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2001-03-15 Alexandre Oliva <aoliva@redhat.com>
|
||||||
|
|
||||||
|
* config/tc-sh.c (parse_reg): Match capital MACH and MACL.
|
||||||
|
|
||||||
2001-03-15 DJ Delorie <dj@redhat.com>
|
2001-03-15 DJ Delorie <dj@redhat.com>
|
||||||
|
|
||||||
* stabs.c (s_stab_generic): Don't corrupt the notes obstack by
|
* stabs.c (s_stab_generic): Don't corrupt the notes obstack by
|
||||||
|
@ -694,12 +694,12 @@ parse_reg (src, mode, reg)
|
|||||||
if (l0 == 'm' && l1 == 'a' && tolower (src[2]) == 'c'
|
if (l0 == 'm' && l1 == 'a' && tolower (src[2]) == 'c'
|
||||||
&& ! IDENT_CHAR ((unsigned char) src[4]))
|
&& ! IDENT_CHAR ((unsigned char) src[4]))
|
||||||
{
|
{
|
||||||
if (src[3] == 'l')
|
if (tolower (src[3]) == 'l')
|
||||||
{
|
{
|
||||||
*mode = A_MACL;
|
*mode = A_MACL;
|
||||||
return 4;
|
return 4;
|
||||||
}
|
}
|
||||||
if (src[3] == 'h')
|
if (tolower (src[3]) == 'h')
|
||||||
{
|
{
|
||||||
*mode = A_MACH;
|
*mode = A_MACH;
|
||||||
return 4;
|
return 4;
|
||||||
|
Reference in New Issue
Block a user