| 718 | |
| 719 | |
| 720 | uint32_t SpirvModule::defIntType( |
| 721 | uint32_t width, |
| 722 | uint32_t isSigned) { |
| 723 | std::array<uint32_t, 2> args = {{ width, isSigned }}; |
| 724 | return this->defType(spv::OpTypeInt, |
| 725 | args.size(), args.data()); |
| 726 | } |
| 727 | |
| 728 | |
| 729 | uint32_t SpirvModule::defFloatType( |
no test coverage detected