diff options
author | Trevor Saunders <tsaunders@mozilla.com> | 2014-02-19 01:38:38 -0500 |
---|---|---|
committer | Trevor Saunders <tsaunders@mozilla.com> | 2014-02-19 01:38:38 -0500 |
commit | 9bc7d927549ac3adb15bc7a33489c211a6b646d5 (patch) | |
tree | a06c5428be836c81303aaf664ab480a4964f28ab /gcc/tree-ssa-loop-manip.c | |
parent | 27da057af3571d6bf84eb19052d6a05db6f360a0 (diff) | |
download | gcc-tbsaunde/bitmap.tar.gz |
kill bitmap_and_intotbsaunde/bitmap
Diffstat (limited to 'gcc/tree-ssa-loop-manip.c')
-rw-r--r-- | gcc/tree-ssa-loop-manip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-loop-manip.c b/gcc/tree-ssa-loop-manip.c index 1d3b5342894..af5d89dcc02 100644 --- a/gcc/tree-ssa-loop-manip.c +++ b/gcc/tree-ssa-loop-manip.c @@ -266,7 +266,7 @@ compute_live_loop_exits (bitmap live_exits, bitmap use_blocks, loop != current_loops->tree_root; loop = loop_outer (loop)) def_loop_exits |= *loop_exits[loop->num]; - bitmap_and_into (live_exits, &def_loop_exits); + *live_exits &= def_loop_exits; } /* Add a loop-closing PHI for VAR in basic block EXIT. */ |