| 263 | } |
| 264 | |
| 265 | spv_result_t AssemblyContext::binaryEncodeU32(const uint32_t value, |
| 266 | spv_instruction_t* pInst) { |
| 267 | pInst->words.insert(pInst->words.end(), value); |
| 268 | return SPV_SUCCESS; |
| 269 | } |
| 270 | |
| 271 | spv_result_t AssemblyContext::binaryEncodeNumericLiteral( |
| 272 | const char* val, spv_result_t error_code, const IdType& type, |
no test coverage detected