Skip to content

Commit

Permalink
fixed r24047.
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@24049 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Vitalij Ruge committed Jan 15, 2015
1 parent 82a4bdb commit 1870e97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Compiler/FrontEnd/Expression.mo
Expand Up @@ -6059,12 +6059,12 @@ algorithm
case(DAE.CALL(path = Absyn.IDENT(name = "semiLinear"),expLst = {e1,_,_}),(cr,false))
equation
b = expHasCref(e1,cr);
then (e1,not b,(cr,b));
then (e1, b,(cr,b));

case(DAE.CALL(path = Absyn.IDENT(name = "sign"),expLst = {e1}),(cr,false))
equation
b = expHasCref(e1,cr);
then (e1,not b,(cr,b));
then (e1, b,(cr,b));

case (_,(_,b)) then (inExp,not b,inTpl);

Expand Down

0 comments on commit 1870e97

Please sign in to comment.