| 1471 | } |
| 1472 | |
| 1473 | BitWidth StoredWidth(BitWidth parent_bit_width_ = BIT_WIDTH_8) const { |
| 1474 | if (IsInline(type_)) { |
| 1475 | return (std::max)(min_bit_width_, parent_bit_width_); |
| 1476 | } else { |
| 1477 | return min_bit_width_; |
| 1478 | } |
| 1479 | } |
| 1480 | }; |
| 1481 | |
| 1482 | private: |
nothing calls this directly
no test coverage detected