Commit a3e19be6 by Maxim Kuvyrkov Committed by Maxim Kuvyrkov

* rtl-factoring.c (collect_pattern_seqs): Fix typo.

From-SVN: r135115
parent 1043771b
2008-05-09 Maxim Kuvyrkov <maxim@codesourcery.com>
* rtl-factoring.c (collect_pattern_seqs): Fix typo.
2008-05-09 Tomas Bily <tbily@suse.cz> 2008-05-09 Tomas Bily <tbily@suse.cz>
* config/pa/pa.c (reloc_needed): Use CASE_CONVERT. * config/pa/pa.c (reloc_needed): Use CASE_CONVERT.
......
...@@ -444,7 +444,7 @@ collect_pattern_seqs (void) ...@@ -444,7 +444,7 @@ collect_pattern_seqs (void)
htab_iterator hti0, hti1, hti2; htab_iterator hti0, hti1, hti2;
p_hash_bucket hash_bucket; p_hash_bucket hash_bucket;
p_hash_elem e0, e1; p_hash_elem e0, e1;
#if defined STACK_REGS || defined HAVE_CC0 #if defined STACK_REGS || defined HAVE_cc0
basic_block bb; basic_block bb;
bitmap_head dont_collect; bitmap_head dont_collect;
...@@ -495,7 +495,7 @@ collect_pattern_seqs (void) ...@@ -495,7 +495,7 @@ collect_pattern_seqs (void)
} }
#endif #endif
#ifdef HAVE_CC0 #ifdef HAVE_cc0
/* Mark CC0 setters and users as ineligible for collection into sequences. /* Mark CC0 setters and users as ineligible for collection into sequences.
This is an over-conservative fix, since it is OK to include This is an over-conservative fix, since it is OK to include
a cc0_setter, but only if we also include the corresponding cc0_user, a cc0_setter, but only if we also include the corresponding cc0_user,
...@@ -515,7 +515,7 @@ collect_pattern_seqs (void) ...@@ -515,7 +515,7 @@ collect_pattern_seqs (void)
} }
#endif #endif
#endif /* defined STACK_REGS || defined HAVE_CC0 */ #endif /* defined STACK_REGS || defined HAVE_cc0 */
/* Initialize PATTERN_SEQS to empty. */ /* Initialize PATTERN_SEQS to empty. */
pattern_seqs = 0; pattern_seqs = 0;
...@@ -529,13 +529,13 @@ collect_pattern_seqs (void) ...@@ -529,13 +529,13 @@ collect_pattern_seqs (void)
FOR_EACH_HTAB_ELEMENT (hash_bucket->seq_candidates, e1, p_hash_elem, FOR_EACH_HTAB_ELEMENT (hash_bucket->seq_candidates, e1, p_hash_elem,
hti2) hti2)
if (e0 != e1 if (e0 != e1
#if defined STACK_REGS || defined HAVE_CC0 #if defined STACK_REGS || defined HAVE_cc0
&& !bitmap_bit_p (&dont_collect, INSN_UID (e0->insn)) && !bitmap_bit_p (&dont_collect, INSN_UID (e0->insn))
&& !bitmap_bit_p (&dont_collect, INSN_UID (e1->insn)) && !bitmap_bit_p (&dont_collect, INSN_UID (e1->insn))
#endif #endif
) )
match_seqs (e0, e1); match_seqs (e0, e1);
#if defined STACK_REGS || defined HAVE_CC0 #if defined STACK_REGS || defined HAVE_cc0
/* Free unused data. */ /* Free unused data. */
bitmap_clear (&dont_collect); bitmap_clear (&dont_collect);
#endif #endif
......
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