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/ipa-reference.c | |
parent | 27da057af3571d6bf84eb19052d6a05db6f360a0 (diff) | |
download | gcc-tbsaunde/bitmap.tar.gz |
kill bitmap_and_intotbsaunde/bitmap
Diffstat (limited to 'gcc/ipa-reference.c')
-rw-r--r-- | gcc/ipa-reference.c | 2 |
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) |