Skip to content

Commit

Permalink
Fix bootstrapping
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@21814 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Aug 8, 2014
1 parent e9b7793 commit f6cd188
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Compiler/BackEnd/SimCodeMain.mo
Expand Up @@ -534,11 +534,11 @@ algorithm
case(_)
equation
true = Flags.isSet(Flags.HPCOM);
Tpl.tplNoret(CodegenCppHpcom.translateModel, iSimCode);
Tpl.tplNoret2(CodegenCppHpcom.translateModel, iSimCode, true);
then ();
else
equation
Tpl.tplNoret(CodegenCpp.translateModel, iSimCode);
Tpl.tplNoret2(CodegenCpp.translateModel, iSimCode, true);
then ();
end matchcontinue;
end callTargetTemplatesCPP;
Expand All @@ -560,7 +560,7 @@ algorithm
then ();
case (_,"Cpp",_)
equation
Tpl.tplNoret(CodegenFMUCpp.translateModel, simCode);
Tpl.tplNoret2(CodegenFMUCpp.translateModel, simCode, true);
then ();
case (_,_,_)
equation
Expand Down

0 comments on commit f6cd188

Please sign in to comment.