File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
OMCompiler/Compiler/BackEnd Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -165,11 +165,13 @@ algorithm
165165 systs := listAppend(contSysts, clockedSysts);
166166 outDAE := BackendDAE . DAE (systs, shared );
167167
168- if Flags . isSet(Flags . DUMP_SYNCHRONOUS ) then
169- print("synchronous features pre-phase: synchronousFeatures \n\n " );
170- BackendDump . dumpEqSystems(systs, "clock partitioning" );
171- BackendDump . dumpBasePartitions(shared . partitionsInfo. basePartitions, "Base clocks" );
172- BackendDump . dumpSubPartitions(shared . partitionsInfo. subPartitions, "Sub clocks" );
168+ if not listEmpty(clockedSysts) then
169+ if Flags . isSet(Flags . DUMP_SYNCHRONOUS ) then
170+ print("synchronous features pre-phase: synchronousFeatures \n\n " );
171+ BackendDump . dumpEqSystems(systs, "clock partitioning" );
172+ BackendDump . dumpBasePartitions(shared . partitionsInfo. basePartitions, "Base clocks" );
173+ BackendDump . dumpSubPartitions(shared . partitionsInfo. subPartitions, "Sub clocks" );
174+ end if ;
173175 end if ;
174176end clockPartitioning1;
175177
You can’t perform that action at this time.
0 commit comments