diff options
author | Sylvain Munaut <tnt@246tNt.com> | 2018-11-20 23:53:08 +0100 |
---|---|---|
committer | Sylvain Munaut <tnt@246tNt.com> | 2018-11-20 23:53:08 +0100 |
commit | 9c5f4fb885bb0d7d99a80ffd506e93e3e85320ae (patch) | |
tree | 561455411eaeba5643c857e8cdd2a9a10b9e5707 /ice40 | |
parent | cf83d546f1139fdfdafa5a309f0378ccff82fac4 (diff) | |
download | nextpnr-9c5f4fb885bb0d7d99a80ffd506e93e3e85320ae.tar.gz nextpnr-9c5f4fb885bb0d7d99a80ffd506e93e3e85320ae.tar.bz2 nextpnr-9c5f4fb885bb0d7d99a80ffd506e93e3e85320ae.zip |
ice40/pll: Fix typo when testing for global port output net
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
Diffstat (limited to 'ice40')
-rw-r--r-- | ice40/pack.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ice40/pack.cc b/ice40/pack.cc index dae19b2d..34d671cf 100644 --- a/ice40/pack.cc +++ b/ice40/pack.cc @@ -874,7 +874,7 @@ static void pack_special(Context *ctx) newname = "PLLOUT_A"; if (pi.name == ctx->id("PLLOUTCOREB")) newname = "PLLOUT_B"; - if (pi.name == ctx->id("PLLOUTGLOBALA") || pi.name == ctx->id("PLLOUTGLOBALA")) + if (pi.name == ctx->id("PLLOUTGLOBALA") || pi.name == ctx->id("PLLOUTGLOBAL")) newname = "PLLOUT_A_GLOBAL"; if (pi.name == ctx->id("PLLOUTGLOBALB")) newname = "PLLOUT_B_GLOBAL"; |