From 42b1acc564e0380454d8d0aa365270be4739f13a Mon Sep 17 00:00:00 2001 From: "D. Mitch Bailey" Date: Wed, 13 Oct 2021 21:00:49 -0700 Subject: [PATCH] Flatten unmatched cells that don't contain instances from the other file. --- base/flatten.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/base/flatten.c b/base/flatten.c index 9c7cef0..8dd7d34 100644 --- a/base/flatten.c +++ b/base/flatten.c @@ -1615,7 +1615,8 @@ PrematchLists(char *name1, int file1, char *name2, int file2) } } else { - match = 0; + // cell exists in one circuit but not the other, so flatten it. + // match = 0; break; } }