mirror of
https://github.com/yuzu-emu/sirit.git
synced 2024-11-22 12:55:40 +01:00
Add OpBranch
This commit is contained in:
parent
48ddaf4913
commit
cdeeb9127c
@ -164,6 +164,9 @@ public:
|
||||
/// The block label instruction: Any reference to a block is through this ref.
|
||||
Ref Label();
|
||||
|
||||
/// Unconditional jump to label.
|
||||
Ref Branch(Ref target_label);
|
||||
|
||||
/// Returns with no value from a function with void return type.
|
||||
Ref Return();
|
||||
|
||||
|
@ -30,6 +30,12 @@ Ref Module::Label() {
|
||||
return AddCode(spv::Op::OpLabel, bound++);
|
||||
}
|
||||
|
||||
Ref Module::Branch(Ref target_label) {
|
||||
Op* op{new Op(spv::Op::OpBranch)};
|
||||
op->Add(target_label);
|
||||
return AddCode(op);
|
||||
}
|
||||
|
||||
Ref Module::Return() {
|
||||
return AddCode(spv::Op::OpReturn);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user