mirror of
https://github.com/azahar-emu/sirit
synced 2025-11-07 07:30:00 +01:00
Add name overload to OpLabel
This commit is contained in:
parent
ba92d8ea08
commit
ee4ce61e62
@ -176,10 +176,14 @@ public:
|
||||
/// Declare a structured selection.
|
||||
Id OpSelectionMerge(Id merge_block, spv::SelectionControlMask selection_control);
|
||||
|
||||
/// The block label instruction: Any reference to a block is through this
|
||||
/// ref.
|
||||
/// The block label instruction: Any reference to a block is through this ref.
|
||||
Id OpLabel();
|
||||
|
||||
/// The block label instruction: Any reference to a block is through this ref.
|
||||
Id OpLabel(const std::string label_name) {
|
||||
return Name(OpLabel(), label_name);
|
||||
}
|
||||
|
||||
/// Unconditional jump to label.
|
||||
Id OpBranch(Id target_label);
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user