Fix thinko in ultra_cmove_results_ready_p.
From-SVN: r22088
This commit is contained in:
parent
57fc66388b
commit
c305b1a752
@ -23,7 +23,8 @@ Fri Aug 28 19:00:44 1998 David S. Miller <davem@pierdol.cobaltmicro.com>
|
||||
(sparc_emit_set_const64): Remove unused variable i.
|
||||
(sparc_splitdi_legitimate): Likewise for addr_part.
|
||||
(ultra_code_from_mask): Likewise for mask.
|
||||
(ultra_cmove_results_ready_p): Fixup entry modulo calc.
|
||||
(ultra_cmove_results_ready_p): Fixup entry modulo calc. and
|
||||
reverse return values so it matches usage and comments.
|
||||
(ultra_flush_pipeline): Likewise.
|
||||
(ultra_fpmode_conflict_exists): Likewise, remove unused variable
|
||||
this_type, and allow loads and stores of differing FP modes as
|
||||
|
@ -6310,9 +6310,9 @@ ultra_cmove_results_ready_p (insn)
|
||||
slot = 4;
|
||||
while (--slot >= 0)
|
||||
if (up->group[slot] == insn)
|
||||
return 1;
|
||||
return 0;
|
||||
|
||||
return 0;
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Walk backwards in pipeline history looking for FPU
|
||||
|
Loading…
Reference in New Issue
Block a user