diff options
author | Miodrag Milanović <mmicko@gmail.com> | 2020-10-15 12:22:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-15 12:22:15 +0200 |
commit | d5dde5df4619f31d3fdd7c3ec3439c6989355894 (patch) | |
tree | 83d380897bc119f7f4295a8f795e23a826e62735 /common/arch_pybindings_shared.h | |
parent | 576baa994f4b9e1746a231469bfd9e65d1d5a2b4 (diff) | |
parent | b18ea204c2cd88a5fad8989f4597cfa3a8152ca1 (diff) | |
download | nextpnr-d5dde5df4619f31d3fdd7c3ec3439c6989355894.tar.gz nextpnr-d5dde5df4619f31d3fdd7c3ec3439c6989355894.tar.bz2 nextpnr-d5dde5df4619f31d3fdd7c3ec3439c6989355894.zip |
Merge pull request #509 from YosysHQ/dave/remove-wire-alias
Remove wire alias API
Diffstat (limited to 'common/arch_pybindings_shared.h')
-rw-r--r-- | common/arch_pybindings_shared.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/common/arch_pybindings_shared.h b/common/arch_pybindings_shared.h index 7b0fa501..3f7efcc1 100644 --- a/common/arch_pybindings_shared.h +++ b/common/arch_pybindings_shared.h @@ -95,8 +95,6 @@ fn_wrapper_1a<Context, decltype(&Context::getPipsDownhill), &Context::getPipsDow conv_from_str<WireId>>::def_wrap(ctx_cls, "getPipsDownhill"); fn_wrapper_1a<Context, decltype(&Context::getPipsUphill), &Context::getPipsUphill, wrap_context<PipRange>, conv_from_str<WireId>>::def_wrap(ctx_cls, "getPipsUphill"); -fn_wrapper_1a<Context, decltype(&Context::getWireAliases), &Context::getWireAliases, wrap_context<PipRange>, - conv_from_str<WireId>>::def_wrap(ctx_cls, "getWireAliases"); fn_wrapper_1a<Context, decltype(&Context::getPipSrcWire), &Context::getPipSrcWire, conv_to_str<WireId>, conv_from_str<PipId>>::def_wrap(ctx_cls, "getPipSrcWire"); |