| Index: src/types.cc
|
| diff --git a/src/types.cc b/src/types.cc
|
| index 327eba0679bc9cb9efa5444a839ef02b8b8082e3..b2904c8d4482935d4bb4c887a145f4a0439aa581 100644
|
| --- a/src/types.cc
|
| +++ b/src/types.cc
|
| @@ -261,8 +261,7 @@ bool TypeImpl<Config>::SlowIs(TypeImpl* that) {
|
| }
|
| if (this->IsBitset() && SEMANTIC(this->AsBitset()) == BitsetType::kNone) {
|
| // Bitsets only have non-bitset supertypes along the representation axis.
|
| - int that_bitset = that->BitsetGlb();
|
| - return (BitsetType::Is(this->AsBitset(), that_bitset));
|
| + return BitsetType::Is(this->AsBitset(), that->BitsetGlb());
|
| }
|
|
|
| if (that->IsClass()) {
|
|
|