Chromium Code Reviews| Index: src/types.h |
| diff --git a/src/types.h b/src/types.h |
| index 5d3585a8cd8a9caff3837b4cc08a67dee911d992..20371a9ba2390e8e8ea52605c4b0c750b738c53b 100644 |
| --- a/src/types.h |
| +++ b/src/types.h |
| @@ -444,7 +444,7 @@ struct ZoneTypeConfig { |
| } |
| static int lub_bitset(Type* type) { |
| ASSERT(is_class(type) || is_constant(type)); |
| - return tagged_get<intptr_t>(as_tagged(type), 0); |
| + return static_cast<int>(tagged_get<intptr_t>(as_tagged(type), 0)); |
| } |
| }; |