From 6db9b439981ecbd1e5a6b00b7b7928ccb2a5e8d1 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 12 Apr 2021 18:47:00 -0400 Subject: [PATCH] sirit: Resolve -Wdocumentation warnings Amends some -Wdocumentation warnings with clang. --- include/sirit/sirit.h | 8 ++++++-- 1 file 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 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 blocks);