OSDN Git Service

2004-07-08 Vladimir Makarov <vmakarov@redhat.com>
authorvmakarov <vmakarov@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 8 Jul 2004 22:13:40 +0000 (22:13 +0000)
committervmakarov <vmakarov@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 8 Jul 2004 22:13:40 +0000 (22:13 +0000)
PR target/16414
* config/ia64/ia64.c (ia64_dfa_new_cycle): Fix typo in comparison
of asm_noperands result.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84318 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/ia64/ia64.c

index 18a2b3a..a7f9992 100644 (file)
@@ -1,3 +1,9 @@
+2004-07-08  Vladimir Makarov  <vmakarov@redhat.com>
+
+       PR target/16414
+       * config/ia64/ia64.c (ia64_dfa_new_cycle): Fix typo in comparison
+       of asm_noperands result.
+
 2004-07-08  Richard Henderson  <rth@redhat.com>
 
        * builtins.c (ind_gimplify_va_arg_expr): New.
index b8e3345..117f965 100644 (file)
@@ -6341,7 +6341,7 @@ ia64_dfa_new_cycle (FILE *dump, int verbose, rtx insn, int last_clock,
     setup_clocks_p = TRUE;
   if (setup_clocks_p && ia64_tune == PROCESSOR_ITANIUM
       && GET_CODE (PATTERN (insn)) != ASM_INPUT
-      && asm_noperands (PATTERN (insn)) == 0)
+      && asm_noperands (PATTERN (insn)) < 0)
     {
       enum attr_itanium_class c = ia64_safe_itanium_class (insn);