mirror of
https://github.com/yuzu-emu/sirit
synced 2024-11-22 12:03:34 +00:00
sirit: Resolve -Wdocumentation warnings
Amends some -Wdocumentation warnings with clang.
This commit is contained in:
parent
a3d7754e9f
commit
6db9b43998
1 changed files with 6 additions and 2 deletions
|
@ -244,13 +244,17 @@ public:
|
|||
|
||||
/**
|
||||
* The SSA phi function.
|
||||
* @param operands An immutable span of variable, parent block pairs
|
||||
*
|
||||
* @param result_type The result type.
|
||||
* @param operands An immutable span of variable, parent block pairs
|
||||
*/
|
||||
Id OpPhi(Id result_type, std::span<const Id> operands);
|
||||
|
||||
/**
|
||||
* The SSA phi function. This instruction will be revisited when patching phi nodes.
|
||||
* @param operands An immutable span of block pairs
|
||||
*
|
||||
* @param result_type The result type.
|
||||
* @param blocks An immutable span of block pairs.
|
||||
*/
|
||||
Id DeferredOpPhi(Id result_type, std::span<const Id> blocks);
|
||||
|
||||
|
|
Loading…
Reference in a new issue