Skip to content

Commit

Permalink
[binder] Remove dedup option (#3641)
Browse files Browse the repository at this point in the history
This was removed on upstream CIRCT.

Signed-off-by: Schuyler Eldridge <[email protected]>
  • Loading branch information
seldridge authored Nov 17, 2023
1 parent 8741ee7 commit e278ba9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions binder/includeFunctions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,6 @@ firtoolOptionsSetChiselInterfaceOutDirectory
firtoolOptionsGetChiselInterfaceOutDirectory
firtoolOptionsSetVbToBv
firtoolOptionsGetVbToBv
firtoolOptionsSetDedup
firtoolOptionsGetDedup
firtoolOptionsSetCompanionMode
firtoolOptionsGetCompanionMode
firtoolOptionsSetDisableAggressiveMergeConnections
Expand Down
2 changes: 0 additions & 2 deletions binder/src/main/scala/PanamaCIRCT.scala
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,6 @@ class PanamaCIRCT {
def firtoolOptionsSetVbToBv(options: FirtoolOptions, value: Boolean) =
CAPI.firtoolOptionsSetVbToBv(options.get, value)
def firtoolOptionsGetVbToBv(options: FirtoolOptions): Boolean = CAPI.firtoolOptionsGetVbToBv(options.get)
def firtoolOptionsSetDedup(options: FirtoolOptions, value: Boolean) = CAPI.firtoolOptionsSetDedup(options.get, value)
def firtoolOptionsGetDedup(options: FirtoolOptions): Boolean = CAPI.firtoolOptionsGetDedup(options.get)
def firtoolOptionsSetCompanionMode(options: FirtoolOptions, value: FirtoolCompanionMode) =
CAPI.firtoolOptionsSetCompanionMode(options.get, value.get)
def firtoolOptionsGetCompanionMode(options: FirtoolOptions) = CAPI.firtoolOptionsGetCompanionMode(options.get)
Expand Down

0 comments on commit e278ba9

Please sign in to comment.