Commit 2d8f9759 by Vladimir Makarov Committed by Vladimir Makarov

re PR target/16414 (Gcc 3.4 ICE on valid code)

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.

From-SVN: r84318
parent 083385aa
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.
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment