Skip to content

Commit

Permalink
hl: Add description strings to CompoundLiteralOp.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jezurko authored and xlauko committed May 31, 2024
1 parent 04a72b4 commit d9a17a9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions include/vast/Dialect/HighLevel/HighLevelOps.td
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down

0 comments on commit d9a17a9

Please sign in to comment.