diff --git a/clang/include/clang/CIR/Dialect/IR/CIROps.td b/clang/include/clang/CIR/Dialect/IR/CIROps.td index edaf0fe839c6..015482e6ebcf 100644 --- a/clang/include/clang/CIR/Dialect/IR/CIROps.td +++ b/clang/include/clang/CIR/Dialect/IR/CIROps.td @@ -1056,6 +1056,7 @@ def ScopeOp : CIR_Op<"scope", [ } ``` + The blocks can be terminated by `cir.yield`, `cir.return` or `cir.throw`. If `cir.scope` yields no value, the `cir.yield` can be left out, and will be inserted implicitly. }];