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/cselib.c | |
parent | 994ab8bb4b8a0ba60ddb3a669f510dd56d7ccae4 (diff) | |
download | gcc-tbsaunde/bitmap2.tar.gz |
move some bitmap functions to methodstbsaunde/bitmap2
Diffstat (limited to 'gcc/cselib.c')
-rw-r--r-- | gcc/cselib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cselib.c b/gcc/cselib.c index e201f5e7c49..9e1cb4a8dba 100644 --- a/gcc/cselib.c +++ b/gcc/cselib.c @@ -1606,13 +1606,13 @@ cselib_expand_value_rtx_1 (rtx orig, struct expand_value_data *evd, || regno == cfa_base_preserved_regno) return orig; - bitmap_set_bit (evd->regs_active, regno); + evd->regs_active->set_bit (regno); if (dump_file && (dump_flags & TDF_CSELIB)) fprintf (dump_file, "expanding: r%d into: ", regno); result = expand_loc (l->elt->locs, evd, max_depth); - bitmap_clear_bit (evd->regs_active, regno); + evd->regs_active->set_bit (regno); if (result) return result; |