summaryrefslogtreecommitdiffstats
path: root/gas
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2003-01-28 11:02:40 +0000
committerNick Clifton <nickc@redhat.com>2003-01-28 11:02:40 +0000
commitdf25fda59cd72150690a02f51f804849545783e8 (patch)
tree48cd9a77e870414b191d7bdda4338e339ea42be9 /gas
parent69906a9b3a62b0d5fff4ecf31c8882183c02c0e3 (diff)
downloadppe42-binutils-df25fda59cd72150690a02f51f804849545783e8.tar.gz
ppe42-binutils-df25fda59cd72150690a02f51f804849545783e8.zip
Replace occurences of 'tolower' with 'TOLOWER'.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/config/tc-msp430.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 04db2c2bd5..a734f80560 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+2003-01-28 Dmitry Diky <diwil@mail.ru>
+
+ * config/tc-msp430.c: Replace occurences of 'tolower' with
+ 'TOLOWER'.
+
2003-01-27 David Mosberger <davidm@hpl.hp.com>
* config/tc-ia64.c (dot_vframesp): Correct error message.
diff --git a/gas/config/tc-msp430.c b/gas/config/tc-msp430.c
index a07f13ff7c..ce0116b981 100644
--- a/gas/config/tc-msp430.c
+++ b/gas/config/tc-msp430.c
@@ -1,6 +1,6 @@
/* tc-msp430.c -- Assembler code for the Texas Instruments MSP430
- Copyright (C) 2002 Free Software Foundation, Inc.
+ Copyright (C) 2002, 2003 Free Software Foundation, Inc.
Contributed by Dmitry Diky <diwil@mail.ru>
This file is part of GAS, the GNU Assembler.
@@ -424,7 +424,7 @@ md_assemble (str)
while (cmd[i] && i < sizeof (cmd))
{
- char a = tolower (cmd[i]);
+ char a = TOLOWER (cmd[i]);
cmd[i] = a;
i++;
}
@@ -475,7 +475,7 @@ msp430_operands (opcode, line)
.b @r2+, 5(R1). */
/* Check if byte or word operation. */
- if (*line == '.' && tolower (*(line + 1)) == 'b')
+ if (*line == '.' && TOLOWER (*(line + 1)) == 'b')
{
bin |= BYTE_OPERATION;
byte_op = 1;
OpenPOWER on IntegriCloud