From 3d492eddeec17fc6c2b19b6609ae41edb16a8c56 Mon Sep 17 00:00:00 2001 From: James Cherry Date: Sat, 4 Jul 2020 08:26:11 -0700 Subject: [PATCH] get -filter spaces around op not required --- tcl/Sdc.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcl/Sdc.tcl b/tcl/Sdc.tcl index 9566572f..8f2e42c0 100644 --- a/tcl/Sdc.tcl +++ b/tcl/Sdc.tcl @@ -1004,7 +1004,7 @@ proc get_ports { args } { return $ports } -variable filter_regexp1 {@?([a-zA-Z_]+) +(==|=~) +([0-9a-zA-Z_\*]+)} +variable filter_regexp1 {@?([a-zA-Z_]+) *(==|=~) *([0-9a-zA-Z_\*]+)} variable filter_or_regexp "($filter_regexp1) +\\|\\| +($filter_regexp1)" variable filter_and_regexp "($filter_regexp1) +&& +($filter_regexp1)"