Skip to content

Commit

Permalink
Don't dump the flat model in silent mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
perost committed Oct 13, 2016
1 parent bdb177c commit d95bf99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Compiler/Main/Main.mo
Expand Up @@ -491,7 +491,7 @@ algorithm

Print.clearBuf();
execStat("Transformations before Dump");
s = DAEDump.dumpStr(d, funcs);
s = if Config.silent() then "" else DAEDump.dumpStr(d, funcs);
execStat("DAEDump done");
Print.printBuf(s);
if Flags.isSet(Flags.DAE_DUMP_GRAPHV) then
Expand Down

0 comments on commit d95bf99

Please sign in to comment.