Skip to content

Commit 28aedc1

Browse files
authored
Merge pull request #3011 from AlexandreSinger/feature-read-sdc-warnings
[Tatum][Parse] Fixed Extraneous Warning With get_clocks
2 parents 47978d5 + ceb2ec7 commit 28aedc1

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

vpr/src/timing/read_sdc.cpp

+5-6
Original file line numberDiff line numberDiff line change
@@ -949,12 +949,11 @@ class SdcParseCallback : public sdcparse::Callback {
949949
}
950950
}
951951
}
952-
953-
if (!found) {
954-
VTR_LOGF_WARN(fname_.c_str(), lineno_,
955-
"get_clocks target name or pattern '%s' matched no clocks\n",
956-
clock_glob_pattern.c_str());
957-
}
952+
}
953+
if (!found) {
954+
VTR_LOGF_WARN(fname_.c_str(), lineno_,
955+
"get_clocks target name or pattern '%s' matched no clocks\n",
956+
clock_glob_pattern.c_str());
958957
}
959958
}
960959

0 commit comments

Comments
 (0)