Skip to content

Commit

Permalink
Tablegen comments
Browse files Browse the repository at this point in the history
  • Loading branch information
fzi-hielscher committed Jan 8, 2025
1 parent d396282 commit 587820e
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions include/circt/Dialect/Sim/SimOps.td
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@
#ifndef CIRCT_DIALECT_SIM_SIMOPS_TD
#define CIRCT_DIALECT_SIM_SIMOPS_TD

include "mlir/Interfaces/SideEffectInterfaces.td"
include "mlir/Interfaces/FunctionInterfaces.td"
include "circt/Dialect/Sim/SimDialect.td"
include "circt/Dialect/Sim/SimTypes.td"
include "circt/Dialect/Seq/SeqTypes.td"
include "circt/Dialect/HW/HWEnums.td"
include "circt/Dialect/HW/HWOpInterfaces.td"
Expand Down Expand Up @@ -409,8 +405,8 @@ def TriggerSequenceOp : SimOp<"trigger_sequence", [
def YieldSeqOp : SimOp<"yield_seq",[
Terminator, HasParent<"circt::sim::TriggeredOp">
]> {
let summary = [{Yield results from a triggerd region with 'seq'
(i.e. register-like) semantics."}];
let summary =
"Yield results from a triggered region with sequential semantics.";
let description = [{
Terminates a triggered region and produces the given list of values.
The results only become visible after all triggers and register updates
Expand Down Expand Up @@ -440,9 +436,8 @@ def TriggeredOp : SimOp<"triggered", [
SingleBlockImplicitTerminator<"sim::YieldSeqOp">,
HasParent<"circt::hw::HWModuleOp">
]> {
let summary = [{
Defines a procedure invoked on a given trigger and condition.
}];
let summary =
"Defines a procedure invoked on a given trigger and condition.";
let description = [{
Creates a procedural region which is invoked on a given trigger.
The body region must complete without 'consuming' simulation time. It
Expand Down

0 comments on commit 587820e

Please sign in to comment.