From df25fda59cd72150690a02f51f804849545783e8 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Tue, 28 Jan 2003 11:02:40 +0000 Subject: [PATCH] Replace occurences of 'tolower' with 'TOLOWER'. --- gas/ChangeLog | 5 +++++ gas/config/tc-msp430.c | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 04db2c2..a734f80 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 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 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; -- 2.7.4