Skip to content

Commit 696a4b1

Browse files
committed
Changed RSZ-168 from ERROR to WARNING
Signed-off-by: Jaehyun Kim <[email protected]>
1 parent 54e7b7c commit 696a4b1

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/rsz/src/UnbufferMove.cc

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -355,10 +355,12 @@ void UnbufferMove::removeBuffer(Instance* buffer)
355355

356356
// Handle undriven buffer
357357
if (in_db_net == nullptr) {
358-
logger_->error(RSZ,
359-
168,
360-
"Cannot remove undriven buffer {}.",
361-
network_->pathName(buffer));
358+
logger_->warn(
359+
RSZ,
360+
168,
361+
"The input pin of buffer '{}' is undriven. Do not remove the buffer.",
362+
network_->pathName(buffer));
363+
return;
362364
}
363365

364366
// Remove the unused buffer

0 commit comments

Comments
 (0)