Append another basic block the end of this one.
| 130 | /// Append another basic block the end of this one. |
| 131 | /// </summary> |
| 132 | void append(const spirv_basic_block &block) |
| 133 | { |
| 134 | instructions.insert(instructions.end(), block.instructions.begin(), block.instructions.end()); |
| 135 | } |
| 136 | }; |
| 137 | |
| 138 | class codegen_spirv final : public codegen |
no outgoing calls
no test coverage detected