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 + + * config/tc-msp430.c: Replace occurences of 'tolower' with + 'TOLOWER'. + 2003-01-27 David Mosberger * 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 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;