]> gcc.gnu.org Git - gcc.git/commitdiff
Fix recent breakage
authorMichael Meissner <meissner@gcc.gnu.org>
Sat, 9 Dec 1995 00:30:07 +0000 (00:30 +0000)
committerMichael Meissner <meissner@gcc.gnu.org>
Sat, 9 Dec 1995 00:30:07 +0000 (00:30 +0000)
From-SVN: r10691

gcc/config/rs6000/rs6000.c

index a28bd5c2fd596abd5842671e2abdacffb093c676..f384520e5918a4c5515fa25e515c2af092ab0456 100644 (file)
@@ -790,9 +790,8 @@ input_operand (op, mode)
   if (register_operand (op, mode))
     return 1;
 
-  /* For HImode and QImode, any constant is valid. */
-  if ((mode == HImode || mode == QImode)
-      && GET_CODE (op) == CONST_INT)
+  /* For integer modes, any constant is ok.  */
+  if (GET_CODE (op) == CONST_INT)
     return 1;
 
   /* A SYMBOL_REF referring to the TOC is valid.  */
This page took 0.073326 seconds and 5 git commands to generate.