* h8300.c (dosize): Fix test for "sub".
authorJ"orn Rennecke <amylaar@redhat.com>
Thu, 30 Aug 2001 15:13:27 +0000 (15:13 +0000)
committerJoern Rennecke <amylaar@gcc.gnu.org>
Thu, 30 Aug 2001 15:13:27 +0000 (16:13 +0100)
From-SVN: r45288

gcc/ChangeLog
gcc/config/h8300/h8300.c

index 4543e228274fe6e4ba77f3ed20f7bbfd83ff8964..3f1c2c6dfd88a1628acfdda407ad96516592940f 100644 (file)
@@ -1,3 +1,7 @@
+Thu Aug 30 16:00:31 2001  J"orn Rennecke <amylaar@redhat.com>
+
+       * h8300.c (dosize): Fix test for "sub".
+
 Thu Aug 30 10:21:43 2001  J"orn Rennecke <amylaar@redhat.com>
 
        * c-typeck.c (pointer_diff): Try to eliminate common term before
index 3c95e57255a43454b88c31febdd79ee6066bcc2f..618da6de820cc7604dde96139727df74f5104b1b 100644 (file)
@@ -185,7 +185,7 @@ dosize (file, op, size)
   if ((TARGET_H8300 && size <= 4)
       || ((TARGET_H8300H || TARGET_H8300S) && size <= 8)
       || (TARGET_H8300 && current_function_needs_context
-         && strcmp (op, "sub")))
+         && strcmp (op, "sub")))
     {
       unsigned HOST_WIDE_INT amount;