diff options
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) |