summaryrefslogtreecommitdiff
path: root/gcc/cfgcleanup.c
diff options
context:
space:
mode:
authorTrevor Saunders <tsaunders@mozilla.com>2013-11-18 22:36:34 -0500
committerTrevor Saunders <tsaunders@mozilla.com>2013-11-18 22:36:34 -0500
commit0c4d1ac58074fda4b63b62d4774ef6d2822c59fc (patch)
tree4441a04bc55e8f43bcf585457ea30f56c15ce837 /gcc/cfgcleanup.c
parent994ab8bb4b8a0ba60ddb3a669f510dd56d7ccae4 (diff)
downloadgcc-tbsaunde/bitmap2.tar.gz
move some bitmap functions to methodstbsaunde/bitmap2
Diffstat (limited to 'gcc/cfgcleanup.c')
-rw-r--r--gcc/cfgcleanup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfgcleanup.c b/gcc/cfgcleanup.c
index 51611907368..645045584a0 100644
--- a/gcc/cfgcleanup.c
+++ b/gcc/cfgcleanup.c
@@ -209,7 +209,7 @@ mark_effect (rtx exp, regset nonequal)
bitmap_clear_range (nonequal, regno,
hard_regno_nregs[regno][GET_MODE (dest)]);
else
- bitmap_clear_bit (nonequal, regno);
+ nonequal->set_bit (regno);
}
return false;
@@ -226,7 +226,7 @@ mark_effect (rtx exp, regset nonequal)
bitmap_set_range (nonequal, regno,
hard_regno_nregs[regno][GET_MODE (dest)]);
else
- bitmap_set_bit (nonequal, regno);
+ nonequal->set_bit (regno);
return false;
default: