From 7d0a0e82bf6ab6fdaf5e3abb52dcd1ae1d2bd311 Mon Sep 17 00:00:00 2001 From: stefan schippers Date: Sat, 11 Jan 2025 20:24:16 +0100 Subject: [PATCH] name_unlabeled_instances() commented out redundant (never happens) check --- src/netlist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/netlist.c b/src/netlist.c index 52fc1976..505b5ba9 100644 --- a/src/netlist.c +++ b/src/netlist.c @@ -1441,7 +1441,7 @@ static int name_unlabeled_instances() } } } - + #if 0 /* should never happen */ for (i = 0; i < instances; ++i) { if(!inst[i].node) continue; @@ -1464,7 +1464,7 @@ static int name_unlabeled_instances() } } } - + #endif return err;