bypass error
This commit is contained in:
parent
0b4bdd752d
commit
4e77551479
|
@ -58,12 +58,13 @@ int read_pcf(const char* fname, PcfData& pcf_data) {
|
|||
} else if (word[0] == COMMENT) { // if it's a comment
|
||||
break; // or ignore the full line comment and move on
|
||||
} else {
|
||||
/* Reach unknown command for OpenFpga, error out */
|
||||
if (word.find("set_clk") == 0 || word.find("set_reset") == 0) {
|
||||
continue; // set_clk and set_rest are known commands for Arkangel,
|
||||
// disable the error message for these two commands when
|
||||
// call read_pcf function
|
||||
/* set_clk and set_rest are known commands for Arkangel, disable the
|
||||
* error message for these two commands when call read_pcf function
|
||||
*/
|
||||
break;
|
||||
} else {
|
||||
/* Reach unknown command for OpenFpga, error out */
|
||||
VTR_LOG_ERROR("Unknown command '%s'!\n", word.c_str());
|
||||
num_err++;
|
||||
break; // and move onto next line. without this, it will accept
|
||||
|
|
Loading…
Reference in New Issue