aboutsummaryrefslogtreecommitdiffstats
path: root/common/design.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/design.h')
-rw-r--r--common/design.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/design.h b/common/design.h
index f4c24f15..1591e0f2 100644
--- a/common/design.h
+++ b/common/design.h
@@ -74,7 +74,7 @@ struct CellInfo;
struct PortRef
{
- CellInfo *cell;
+ CellInfo *cell = nullptr;
IdString port;
};
@@ -85,8 +85,8 @@ struct NetInfo
vector<PortRef> users;
dict<IdString, std::string> attrs;
- // wire -> (uphill_wire, delay)
- dict<WireId, std::pair<WireId, DelayInfo>> wires;
+ // wire -> uphill_pip
+ dict<WireId, PipId> wires;
};
enum PortType