From d9a17a96ed2346dae6fbce78cc7373fa77f8d9b6 Mon Sep 17 00:00:00 2001 From: Robert Konicar Date: Thu, 30 May 2024 16:20:29 +0200 Subject: [PATCH] hl: Add description strings to CompoundLiteralOp. --- include/vast/Dialect/HighLevel/HighLevelOps.td | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/vast/Dialect/HighLevel/HighLevelOps.td b/include/vast/Dialect/HighLevel/HighLevelOps.td index 4653f3d59b..ab6d037ab9 100644 --- a/include/vast/Dialect/HighLevel/HighLevelOps.td +++ b/include/vast/Dialect/HighLevel/HighLevelOps.td @@ -490,8 +490,10 @@ def UnreachableOp : HighLevel_Op<"unreachable", [Terminator]> { def CompoundLiteralOp : HighLevel_Op< "compound_literal" > , Results< (outs AnyType:$result) > { - let summary = "TODO"; - let description = [{ TODO }]; + let summary = "VAST operation for building compound literals."; + let description = [{ Creates a compound literal that represents an unnamed object + and is initialzied by initializer-list.}]; + let regions = (region ValueRegion:$init); let skipDefaultBuilders = 1; let builders = [