diff options
author | David Shah <dave@ds0.me> | 2020-10-15 09:36:15 +0100 |
---|---|---|
committer | David Shah <dave@ds0.me> | 2020-10-15 09:36:15 +0100 |
commit | b18ea204c2cd88a5fad8989f4597cfa3a8152ca1 (patch) | |
tree | 83d380897bc119f7f4295a8f795e23a826e62735 /common/arch_pybindings_shared.h | |
parent | 576baa994f4b9e1746a231469bfd9e65d1d5a2b4 (diff) | |
download | nextpnr-b18ea204c2cd88a5fad8989f4597cfa3a8152ca1.tar.gz nextpnr-b18ea204c2cd88a5fad8989f4597cfa3a8152ca1.tar.bz2 nextpnr-b18ea204c2cd88a5fad8989f4597cfa3a8152ca1.zip |
Remove wire alias API
It has not actually been implemented in any router for over 2.5 years and causes nothing more than confusion. It can always be added back if it forms part of a future solution; possibly as part of a more general database structure rethink.
Signed-off-by: David Shah <dave@ds0.me>
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"); |