* config/tc-sh.c (parse_reg): Match capital MACH and MACL.

This commit is contained in:
Alexandre Oliva 2001-03-16 02:11:05 +00:00
parent 06b0287c20
commit 19c0258a7f
2 changed files with 6 additions and 2 deletions

View File

@ -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>
* stabs.c (s_stab_generic): Don't corrupt the notes obstack by

View File

@ -694,12 +694,12 @@ parse_reg (src, mode, reg)
if (l0 == 'm' && l1 == 'a' && tolower (src[2]) == 'c'
&& ! IDENT_CHAR ((unsigned char) src[4]))
{
if (src[3] == 'l')
if (tolower (src[3]) == 'l')
{
*mode = A_MACL;
return 4;
}
if (src[3] == 'h')
if (tolower (src[3]) == 'h')
{
*mode = A_MACH;
return 4;