| Index: pkg/compiler/lib/src/universe/side_effects.dart
|
| diff --git a/pkg/compiler/lib/src/universe/side_effects.dart b/pkg/compiler/lib/src/universe/side_effects.dart
|
| index 6b35429a22deea413f690bc1f36598e8e3ec4155..66b4aa76fc709cfb37277c7ab516810d39e3f0b5 100644
|
| --- a/pkg/compiler/lib/src/universe/side_effects.dart
|
| +++ b/pkg/compiler/lib/src/universe/side_effects.dart
|
| @@ -39,7 +39,7 @@ class SideEffects {
|
|
|
| bool _getFlag(int position) => (_flags & (1 << position)) != 0;
|
| void _setFlag(int position) { _flags |= (1 << position); }
|
| - bool _clearFlag(int position) { _flags &= ~(1 << position); }
|
| + void _clearFlag(int position) { _flags &= ~(1 << position); }
|
|
|
| int getChangesFlags() => _flags & ((1 << FLAG_CHANGES_COUNT) - 1);
|
| int getDependsOnFlags() {
|
|
|