Replace occurences of 'tolower' with 'TOLOWER'.
authorNick Clifton <nickc@redhat.com>
Tue, 28 Jan 2003 11:02:40 +0000 (11:02 +0000)
committerNick Clifton <nickc@redhat.com>
Tue, 28 Jan 2003 11:02:40 +0000 (11:02 +0000)
gas/ChangeLog
gas/config/tc-msp430.c

index 04db2c2bd569b500996631e40ab8a947229aeab6..a734f80560da3f4df4cf74068d3a6f490b4bd19a 100644 (file)
@@ -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.
index a07f13ff7c836bc8ca64fa19bd7cd4babde8b9cd..ce0116b9815142f245bacceb9964745ce57ae0dd 100644 (file)
@@ -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;
This page took 0.033182 seconds and 4 git commands to generate.