Skip to content

Commit

Permalink
messages.txt
Browse files Browse the repository at this point in the history
Signed-off-by: James Cherry <[email protected]>
  • Loading branch information
jjcherry56 committed Sep 20, 2022
1 parent ebaf97a commit 049d039
Show file tree
Hide file tree
Showing 2 changed files with 216 additions and 210 deletions.
6 changes: 3 additions & 3 deletions liberty/LibertyReader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2287,7 +2287,7 @@ LibertyReader::makeTimingArcs(const char *from_port_name,
if (from_port_iter.hasNext()) {
LibertyPort *from_port = from_port_iter.next();
if (from_port->direction()->isOutput())
libWarn(165, timing->line(), "timing group from output port.");
libWarn(166, timing->line(), "timing group from output port.");
LibertyPortMemberIterator bit_iter(to_port);
while (bit_iter.hasNext()) {
LibertyPort *to_port_bit = bit_iter.next();
Expand All @@ -2305,7 +2305,7 @@ LibertyReader::makeTimingArcs(const char *from_port_name,
LibertyPort *from_port_bit = from_port_iter.next();
LibertyPort *to_port_bit = to_iter.next();
if (from_port_bit->direction()->isOutput())
libWarn(166, timing->line(), "timing group from output port.");
libWarn(167, timing->line(), "timing group from output port.");
builder_->makeTimingArcs(cell_, from_port_bit, to_port_bit,
related_out_port, timing->attrs());
}
Expand All @@ -2320,7 +2320,7 @@ LibertyReader::makeTimingArcs(const char *from_port_name,
while (from_port_iter.hasNext()) {
LibertyPort *from_port_bit = from_port_iter.next();
if (from_port_bit->direction()->isOutput())
libWarn(167, timing->line(), "timing group from output port.");
libWarn(168, timing->line(), "timing group from output port.");
LibertyPortMemberIterator to_iter(to_port);
while (to_iter.hasNext()) {
LibertyPort *to_port_bit = to_iter.next();
Expand Down
Loading

0 comments on commit 049d039

Please sign in to comment.