Skip to content

Commit

Permalink
- fix strange infinit loop in c_runtime by reverse the order of the e…
Browse files Browse the repository at this point in the history
…quations in strong component

git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@12059 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Jens Frenkel committed Jun 14, 2012
1 parent 9abd2da commit 2fe083b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Compiler/BackEnd/BackendDAETransform.mo
Expand Up @@ -1860,7 +1860,7 @@ algorithm
(stack,comp) = checkStack(vn, rest, number, top :: icomp);
then
(stack,comp);
case (_,_,_,_) then (istack,icomp);
case (_,_,_,_) then (istack,listReverse(icomp));
end matchcontinue;
end checkStack;

Expand Down

0 comments on commit 2fe083b

Please sign in to comment.