sirit: Resolve -Wdocumentation warnings

Amends some -Wdocumentation warnings with clang.
This commit is contained in:
Lioncash 2021-04-12 18:47:00 -04:00 committed by Rodrigo Locatti
parent a3d7754e9f
commit 6db9b43998

View file

@ -244,13 +244,17 @@ public:
/**
* The SSA phi function.
*
* @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);