| 5176 | } |
| 5177 | |
| 5178 | void Builder::dumpModuleProcesses(std::vector<unsigned int>& out) const |
| 5179 | { |
| 5180 | for (int i = 0; i < (int)moduleProcesses.size(); ++i) { |
| 5181 | Instruction moduleProcessed(Op::OpModuleProcessed); |
| 5182 | moduleProcessed.addStringOperand(moduleProcesses[i]); |
| 5183 | moduleProcessed.dump(out); |
| 5184 | } |
| 5185 | } |
| 5186 | |
| 5187 | bool Builder::DecorationInstructionLessThan::operator()(const std::unique_ptr<Instruction>& lhs, |
| 5188 | const std::unique_ptr<Instruction>& rhs) const |
nothing calls this directly
no test coverage detected