1
0
Fork 0
mirror of https://git.suyu.dev/suyu/sirit.git synced 2024-12-22 20:22:02 +00:00

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. * 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); Id OpPhi(Id result_type, std::span<const Id> operands);
/** /**
* The SSA phi function. This instruction will be revisited when patching phi nodes. * 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); Id DeferredOpPhi(Id result_type, std::span<const Id> blocks);