From cb7926ab0d2e453749cee402a213f2870e0e6b15 Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Fri, 28 Feb 2020 14:25:57 -0500 Subject: [PATCH] Corrected lefTech.c not to issue a warning if defining a contact type as an obstruction; that should be perfectly acceptible. --- VERSION | 2 +- lef/lefTech.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 877ae370..77db8419 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.2.189 +8.2.190 diff --git a/lef/lefTech.c b/lef/lefTech.c index 272e4302..1dc68572 100644 --- a/lef/lefTech.c +++ b/lef/lefTech.c @@ -270,7 +270,7 @@ LefTechLine(sectionName, argc, argv) isContact = DBIsContact(mtype); if (option == LEFTECH_LAYER) option = (isContact) ? LEFTECH_CUT : LEFTECH_ROUTE; - else if (isContact && (option != LEFTECH_CUT && option != LEFTECH_CONTACT)) + else if (isContact && (option != LEFTECH_CUT && option != LEFTECH_CONTACT && option != LEFTECH_OBS)) TechError("Attempt to define cut type %s as %s.\n", DBTypeLongNameTbl[mtype], keywords[option]); else if (!isContact && (option == LEFTECH_CUT || option == LEFTECH_CONTACT))