You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (g_Disable_CL0006 || CONFIG.keyValues()["allow_deprecated_framework"] == "yes") {
559
560
warn(Deprecation, srcloc, "pin '%s' is not declared in framework\n This may result in incorrect Verilog code.\n", port.c_str());
560
561
} else {
561
562
reportError(srcloc, "pin '%s' is not declared in framework\n This may result in incorrect Verilog code.\n Use --no-pin-check on command line to force.", port.c_str());
Copy file name to clipboardexpand all lines: src/silice.cpp
+1-1
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ int main(int argc, char **argv)
92
92
cmd.add(exportParam);
93
93
TCLAP::SwitchArg forceResetInit("", "force-reset-init", "forces initialization at reset of initialized registers", false);
94
94
cmd.add(forceResetInit);
95
-
TCLAP::SwitchArg disableCL0006("", "no-pin-check", "disable check for pin declaration in frameworks (see CL0006)", true); /// ////////// TODO set to false once no longer wip
95
+
TCLAP::SwitchArg disableCL0006("", "no-pin-check", "force disable check for pin declaration in frameworks (see CL0006)", false);
96
96
cmd.add(disableCL0006);
97
97
TCLAP::SwitchArg splitInouts("", "split-inouts", "splits all inouts into enable, in, out pins", false);
0 commit comments