| 53 | } |
| 54 | |
| 55 | uint32_t GetSizeTBitWidth(const ValidationState_t& _) { |
| 56 | if (_.addressing_model() == spv::AddressingModel::Physical32) return 32; |
| 57 | |
| 58 | if (_.addressing_model() == spv::AddressingModel::Physical64) return 64; |
| 59 | |
| 60 | return 0; |
| 61 | } |
| 62 | |
| 63 | bool IsIntScalar(ValidationState_t& _, uint32_t id, bool must_len32, |
| 64 | bool must_unsigned) { |
no test coverage detected