Skip to content

Commit

Permalink
- fix for r15980
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@15991 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Willi Braun committed May 6, 2013
1 parent 883d1bc commit 7d2a529
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions Compiler/BackEnd/BackendDAECreate.mo
Expand Up @@ -3056,14 +3056,9 @@ algorithm
v_3 = detectImplicitDiscreteAlgsStatemens(v_2, knv, xs, false);
then
v_3;
case (v, knv, (statement::xs), true)
case (v, knv, (_::xs), b)
equation
v_1 = detectImplicitDiscreteAlgsStatemens(v, knv, xs, true);
then
v_1;
case (v, knv, (statement::xs), false)
equation
v_1 = detectImplicitDiscreteAlgsStatemens(v, knv, xs, false);
v_1 = detectImplicitDiscreteAlgsStatemens(v, knv, xs, b);
then
v_1;
end matchcontinue;
Expand Down

0 comments on commit 7d2a529

Please sign in to comment.