From feac4b5d181948e9183e358011f16c337f75b223 Mon Sep 17 00:00:00 2001 From: James Cherry Date: Thu, 28 Jul 2022 08:10:59 -0700 Subject: [PATCH] set_input_transition -clock_fall warning Signed-off-by: James Cherry --- tcl/Sdc.tcl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tcl/Sdc.tcl b/tcl/Sdc.tcl index 6bfa8cc4..0bbe9761 100644 --- a/tcl/Sdc.tcl +++ b/tcl/Sdc.tcl @@ -2448,8 +2448,8 @@ define_cmd_args "set_input_transition" \ {[-rise] [-fall] [-min] [-max] transition ports} proc set_input_transition { args } { - parse_key_args "set_input_transition" args keys {-clock -clock_fall} \ - flags {-rise -fall -max -min} + parse_key_args "set_input_transition" args keys {-clock} \ + flags {-rise -fall -max -min -clock_fall} set tr [parse_rise_fall_flags flags] set min_max [parse_min_max_all_flags flags] @@ -2465,7 +2465,7 @@ proc set_input_transition { args } { if [info exists keys(-clock)] { sta_warn 361 "-clock not supported." } - if [info exists keys(-clock_fall)] { + if [info exists flags(-clock_fall)] { sta_warn 362 "-clock_fall not supported." }