From 66603cdb534974e084529fb1f28431957361f058 Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Mon, 12 Nov 2018 13:25:05 -0500 Subject: [PATCH] Corrected invalid logic in the interpetation of (cif/gds) label options "text", "port", and "noport" in the techfile. The incorrect interpretation was preventing backwards compatibility, such that ports would not be output on GDS layers if the "port" option was not used. --- cif/CIFtech.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cif/CIFtech.c b/cif/CIFtech.c index 5048cd53..cdc5fcc7 100644 --- a/cif/CIFtech.c +++ b/cif/CIFtech.c @@ -889,9 +889,9 @@ CIFTechLine(sectionName, argc, argv) { if (TTMaskHasType(&mask, i)) { - if (noPort == FALSE) + if (portOnly != TRUE) CIFCurStyle->cs_labelLayer[i] = CIFCurStyle->cs_nLayers-1; - if (portOnly == TRUE) + if (noPort != TRUE) CIFCurStyle->cs_portLayer[i] = CIFCurStyle->cs_nLayers-1; } }