* sh.c (prepare_scc_operands): Add EQ case.
authorJ"orn Rennecke <amylaar@cygnus.co.uk>
Wed, 19 Jan 2000 21:49:21 +0000 (21:49 +0000)
committerJoern Rennecke <amylaar@gcc.gnu.org>
Wed, 19 Jan 2000 21:49:21 +0000 (21:49 +0000)
From-SVN: r31514

gcc/ChangeLog
gcc/config/sh/sh.c

index 51baf62..7a1e17a 100644 (file)
@@ -1,3 +1,7 @@
+Wed Jan 19 21:47:53 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
+
+       * sh.c (prepare_scc_operands): Add EQ case.
+
 Wed Jan 19 20:23:06 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
 
        * sh.h (PASS_IN_REG_P): Remove extraneous paranthesis.
index 0478610..94e4677 100644 (file)
@@ -505,6 +505,8 @@ prepare_scc_operands (code)
     case NE:
       /* It isn't possible to handle this case.  */
       abort ();
+    case EQ:
+      break;
     case LT:
       code = GT;
       break;