Skip to content

Commit

Permalink
Fix rebase problem
Browse files Browse the repository at this point in the history
  • Loading branch information
mingzheTerapines committed Jun 7, 2024
1 parent 68e88ba commit c36417d
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions include/circt/Dialect/Moore/MooreOps.td
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,6 @@ def Parameter : I32EnumAttrCase<"Parameter", 0, "parameter">;
def LocalParameter : I32EnumAttrCase<"LocalParameter", 1, "localparam">;
def SpecParameter : I32EnumAttrCase<"SpecParameter", 2, "specparam">;

def NamedConstAttr : I32EnumAttr<"NamedConst", "elaboration-time constants",
def NamedConstAttr : I32EnumAttr<"NamedConst", "elaboration-time constants",
[Parameter, LocalParameter, SpecParameter]>{
let cppNamespace = "circt::moore";
Expand All @@ -358,9 +357,6 @@ def NamedConstantOp : MooreOp<"named_constant", [

See IEEE 1800-2017 § 6.20 "Constants".
}];
let arguments = (ins StrAttr:$name,
NamedConstAttr:$kind,
AnyAttr:$value);
let arguments = (ins StrAttr:$name,
NamedConstAttr:$kind,
AnyAttr:$value);
Expand All @@ -370,10 +366,6 @@ def NamedConstantOp : MooreOp<"named_constant", [
``custom<ImplicitSSAName>($name)
custom<ParamValue>($value, qualified(type($result)))
attr-dict
$kind
``custom<ImplicitSSAName>($name)
custom<ParamValue>($value, qualified(type($result)))
attr-dict
}];
}

Expand Down

0 comments on commit c36417d

Please sign in to comment.