diff options
Diffstat (limited to 'src/shader_recompiler/frontend/ir/basic_block.h')
| -rw-r--r-- | src/shader_recompiler/frontend/ir/basic_block.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/ir/basic_block.h b/src/shader_recompiler/frontend/ir/basic_block.h index 9ce1ed07e..fbfe98266 100644 --- a/src/shader_recompiler/frontend/ir/basic_block.h +++ b/src/shader_recompiler/frontend/ir/basic_block.h | |||
| @@ -40,6 +40,9 @@ public: | |||
| 40 | /// Appends a new instruction to the end of this basic block. | 40 | /// Appends a new instruction to the end of this basic block. |
| 41 | void AppendNewInst(Opcode op, std::initializer_list<Value> args); | 41 | void AppendNewInst(Opcode op, std::initializer_list<Value> args); |
| 42 | 42 | ||
| 43 | /// Prepends a copy of an instruction to this basic block before the insertion point. | ||
| 44 | iterator PrependNewInst(iterator insertion_point, const Inst& base_inst); | ||
| 45 | |||
| 43 | /// Prepends a new instruction to this basic block before the insertion point. | 46 | /// Prepends a new instruction to this basic block before the insertion point. |
| 44 | iterator PrependNewInst(iterator insertion_point, Opcode op, | 47 | iterator PrependNewInst(iterator insertion_point, Opcode op, |
| 45 | std::initializer_list<Value> args = {}, u32 flags = 0); | 48 | std::initializer_list<Value> args = {}, u32 flags = 0); |