Skip to content

Commit 51cbcec

Browse files
authored
Merge pull request #823 from os-fpga/pinc_handle_editNode_FCLK_BUF_EDA3040
pin_c: no name translation through FCLK_BUF. EDA-3040
2 parents 6a6c156 + a3f29f7 commit 51cbcec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

planning/src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
static const char* _pln_VERSION_STR = "pln0327";
1+
static const char* _pln_VERSION_STR = "pln0328";
22

33
#include "RS/rsEnv.h"
44
#include "util/pln_log.h"

planning/src/pin_loc/read_ports.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1052,7 +1052,7 @@ string PinPlacer::translatePinName(const string& pinName, bool is_input) const n
10521052

10531053
if (is_input) {
10541054
EditItem* buf = findIbufByOldPin(pinName);
1055-
if (buf) {
1055+
if (buf and buf->module_ != "FCLK_BUF") {
10561056
assert(not buf->newPin_.empty());
10571057
EditItem* root = buf->getRoot();
10581058
assert(root);

0 commit comments

Comments
 (0)