diff options
author | Trevor Saunders <tsaunders@mozilla.com> | 2013-11-18 22:36:34 -0500 |
---|---|---|
committer | Trevor Saunders <tsaunders@mozilla.com> | 2013-11-18 22:36:34 -0500 |
commit | 0c4d1ac58074fda4b63b62d4774ef6d2822c59fc (patch) | |
tree | 4441a04bc55e8f43bcf585457ea30f56c15ce837 /gcc/compare-elim.c | |
parent | 994ab8bb4b8a0ba60ddb3a669f510dd56d7ccae4 (diff) | |
download | gcc-tbsaunde/bitmap2.tar.gz |
move some bitmap functions to methodstbsaunde/bitmap2
Diffstat (limited to 'gcc/compare-elim.c')
-rw-r--r-- | gcc/compare-elim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/compare-elim.c b/gcc/compare-elim.c index 847c89128b4..cd9518976b3 100644 --- a/gcc/compare-elim.c +++ b/gcc/compare-elim.c @@ -296,7 +296,7 @@ find_comparison_dom_walker::before_dom_children (basic_block bb) continue; /* Compute the set of registers modified by this instruction. */ - bitmap_clear (killed); + killed->clear (); df_simulate_find_defs (insn, killed); src = conforming_compare (insn); |