Skip to content

Commit

Permalink
- fix bug in ExpressionSolve
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@13908 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Jens Frenkel committed Nov 15, 2012
1 parent 7faaff1 commit 048d38f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Compiler/BackEnd/ExpressionSolve.mo
Expand Up @@ -181,7 +181,7 @@ protected function solveSimple
output DAE.Exp outExp;
output list<DAE.Statement> outAsserts;
algorithm
(outExp,outAsserts) := match (inExp1,inExp2,inExp3)
(outExp,outAsserts) := matchcontinue (inExp1,inExp2,inExp3)
local
DAE.Exp res;
DAE.ComponentRef cr,cr1;
Expand Down Expand Up @@ -290,7 +290,7 @@ algorithm
then
(Expression.negate(inExp1),{});

end match;
end matchcontinue;
end solveSimple;


Expand Down

0 comments on commit 048d38f

Please sign in to comment.