aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2001-03-16 02:11:05 +0000
committerAlexandre Oliva <aoliva@redhat.com>2001-03-16 02:11:05 +0000
commit19c0258a7f4097f2e855b3cf1a8f5cf36416803a (patch)
treee64c35a9c81650a9bca5ed4e514c5b1c7fa385fb /gas
parent06b0287c2064e94493d2ee87f7bb1199e3552c12 (diff)
downloadfsf-binutils-gdb-19c0258a7f4097f2e855b3cf1a8f5cf36416803a.zip
fsf-binutils-gdb-19c0258a7f4097f2e855b3cf1a8f5cf36416803a.tar.gz
fsf-binutils-gdb-19c0258a7f4097f2e855b3cf1a8f5cf36416803a.tar.bz2
* config/tc-sh.c (parse_reg): Match capital MACH and MACL.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog4
-rw-r--r--gas/config/tc-sh.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index c67b49f..583adcf 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -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
diff --git a/gas/config/tc-sh.c b/gas/config/tc-sh.c
index 69dbf75..b1a51e6 100644
--- a/gas/config/tc-sh.c
+++ b/gas/config/tc-sh.c
@@ -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;