Skip to content

Commit f818b57

Browse files
[STA] Fixed Visual Bug in Post-Implementation SDC
While presenting my tutorial on post-implementation timing analysis, I found that the SDC file generated did not look quite right. It was functionally correct, but some of the new-line characters were missing. Added the missing new line characters.
1 parent dd8ea05 commit f818b57

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vpr/src/base/netlist_writer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2716,8 +2716,8 @@ void add_propagated_clocks_to_sdc_file(std::ofstream& sdc_os) {
27162716
sdc_os << "#******************************************************************************#\n";
27172717
sdc_os << "# The following are clock domains in VPR which have delays on their edges.\n";
27182718
sdc_os << "#\n";
2719-
sdc_os << "# Any non-virtual clock has its delay determined and written out as part of a";
2720-
sdc_os << "# propagated clock command. If VPR was instructed not to route the clock, this";
2719+
sdc_os << "# Any non-virtual clock has its delay determined and written out as part of a\n";
2720+
sdc_os << "# propagated clock command. If VPR was instructed not to route the clock, this\n";
27212721
sdc_os << "# delay will be an underestimate.\n";
27222722
sdc_os << "#\n";
27232723
sdc_os << "# Note: Virtual clocks do not get routed and are treated as ideal.\n";

0 commit comments

Comments
 (0)