diff options
author | Nick Clifton <nickc@redhat.com> | 2003-01-28 11:02:40 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2003-01-28 11:02:40 +0000 |
commit | df25fda59cd72150690a02f51f804849545783e8 (patch) | |
tree | 48cd9a77e870414b191d7bdda4338e339ea42be9 /gas/config/tc-msp430.c | |
parent | 69906a9b3a62b0d5fff4ecf31c8882183c02c0e3 (diff) | |
download | gdb-df25fda59cd72150690a02f51f804849545783e8.zip gdb-df25fda59cd72150690a02f51f804849545783e8.tar.gz gdb-df25fda59cd72150690a02f51f804849545783e8.tar.bz2 |
Replace occurences of 'tolower' with 'TOLOWER'.
Diffstat (limited to 'gas/config/tc-msp430.c')
-rw-r--r-- | gas/config/tc-msp430.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gas/config/tc-msp430.c b/gas/config/tc-msp430.c index a07f13f..ce0116b 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; |