Skip to content

Commit

Permalink
Fixed bug 671
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@2465 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Kaj Nyström committed Aug 17, 2006
1 parent 7af46bd commit 259de82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Compiler/Exp.mo
Expand Up @@ -2401,14 +2401,14 @@ algorithm
equation
e_1 = simplifyAsub(e, indx);
then
UNARY(UMINUS(t),e_1);
UNARY(UMINUS_ARR(t),e_1);
case (UNARY(operator = UPLUS_ARR(ty = t),exp = e),indx)
equation
e_1 = simplifyAsub(e, indx);
then
UNARY(UPLUS(t),e_1);
case (BINARY(exp1 = e1,operator = SUB_ARR(ty = t),exp2 = e2),indx)
equation
equation
e1_1 = simplifyAsub(e1, indx);
e2_1 = simplifyAsub(e2, indx);
then
Expand Down

0 comments on commit 259de82

Please sign in to comment.