summaryrefslogtreecommitdiff
path: root/gcc/dse.c
diff options
context:
space:
mode:
authorTrevor Saunders <tsaunders@mozilla.com>2014-02-19 01:38:38 -0500
committerTrevor Saunders <tsaunders@mozilla.com>2014-02-19 01:38:38 -0500
commit9bc7d927549ac3adb15bc7a33489c211a6b646d5 (patch)
treea06c5428be836c81303aaf664ab480a4964f28ab /gcc/dse.c
parent27da057af3571d6bf84eb19052d6a05db6f360a0 (diff)
downloadgcc-tbsaunde/bitmap.tar.gz
kill bitmap_and_intotbsaunde/bitmap
Diffstat (limited to 'gcc/dse.c')
-rw-r--r--gcc/dse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/dse.c b/gcc/dse.c
index a3f82a13c8b..3f2cba3dd14 100644
--- a/gcc/dse.c
+++ b/gcc/dse.c
@@ -2015,7 +2015,7 @@ replace_read (store_info_t store_info, insn_info_t store_insn,
for (this_insn = insns; this_insn != NULL_RTX; this_insn = NEXT_INSN (this_insn))
note_stores (PATTERN (this_insn), look_for_hardregs, &regs_set);
- bitmap_and_into (&regs_set, regs_live);
+ regs_set &= *regs_live;
if (!regs_set.is_empty ())
{
if (dump_file && (dump_flags & TDF_DETAILS))
@@ -3378,7 +3378,7 @@ dse_confluence_n (edge e)
if (dest_info->in)
{
if (src_info->out)
- bitmap_and_into (src_info->out, dest_info->in);
+ *src_info->out &= *dest_info->in;
else
{
src_info->out = BITMAP_ALLOC (&dse_bitmap_obstack);