summaryrefslogtreecommitdiff
path: root/gcc/ipa-reference.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/ipa-reference.c
parent27da057af3571d6bf84eb19052d6a05db6f360a0 (diff)
downloadgcc-tbsaunde/bitmap.tar.gz
kill bitmap_and_intotbsaunde/bitmap
Diffstat (limited to 'gcc/ipa-reference.c')
-rw-r--r--gcc/ipa-reference.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ipa-reference.c b/gcc/ipa-reference.c
index 67578d9ec7f..2a8430a4431 100644
--- a/gcc/ipa-reference.c
+++ b/gcc/ipa-reference.c
@@ -320,7 +320,7 @@ intersect_static_var_sets (bitmap &x, bitmap y)
{
if (x != all_module_statics)
{
- bitmap_and_into (x, y);
+ *x &= *y;
/* As with union_static_var_sets, reducing to the maximum
set as early as possible is an overall win. */
if (*x == *all_module_statics)