diff options
Diffstat (limited to 'ecp5/globals.cc')
| -rw-r--r-- | ecp5/globals.cc | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/ecp5/globals.cc b/ecp5/globals.cc index 06412fef..9b0928a4 100644 --- a/ecp5/globals.cc +++ b/ecp5/globals.cc @@ -350,6 +350,13 @@ class Ecp5GlobalRouter          place_dcc(dcc.get()); +        if (net->clkconstr) { +            glbnet->clkconstr = std::unique_ptr<ClockConstraint>(new ClockConstraint()); +            glbnet->clkconstr->low = net->clkconstr->low; +            glbnet->clkconstr->high = net->clkconstr->high; +            glbnet->clkconstr->period = net->clkconstr->period; +        } +          ctx->cells[dcc->name] = std::move(dcc);          NetInfo *glbptr = glbnet.get();          ctx->nets[glbnet->name] = std::move(glbnet);  | 
