diff options
author | Lioncash <[email protected]> | 2021-04-12 18:47:00 -0400 |
---|---|---|
committer | Rodrigo Locatti <[email protected]> | 2021-04-17 01:22:31 -0300 |
commit | 6db9b439981ecbd1e5a6b00b7b7928ccb2a5e8d1 (patch) | |
tree | fbd89f59072cfee87944a9aa67eaf36c943d7a0c /include | |
parent | a3d7754e9fb5434a2773b066ca4f76b39822a5c2 (diff) | |
download | sirit-6db9b439981ecbd1e5a6b00b7b7928ccb2a5e8d1.tar.gz sirit-6db9b439981ecbd1e5a6b00b7b7928ccb2a5e8d1.zip |
sirit: Resolve -Wdocumentation warnings
Amends some -Wdocumentation warnings with clang.
Diffstat (limited to 'include')
-rw-r--r-- | include/sirit/sirit.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/sirit/sirit.h b/include/sirit/sirit.h index 04f52d2..eaf243e 100644 --- a/include/sirit/sirit.h +++ b/include/sirit/sirit.h @@ -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); |