| 25 | VoidType Type::voidTy; |
| 26 | |
| 27 | unsigned Type::np_bits(bool fromInt) const { |
| 28 | if (!fromInt) |
| 29 | return 1; |
| 30 | auto bw = bits(); |
| 31 | return min(bw, (unsigned)divide_up(bw * bits_poison_per_byte, bits_byte)); |
| 32 | } |
| 33 | |
| 34 | unsigned Type::maxSubBitAccess() const { |
| 35 | return 0; |
no test coverage detected