Skip to content

Commit

Permalink
Bump MSL version to RC1 (+1 commit so it parses)
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@16716 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Aug 1, 2013
1 parent 579ef47 commit 260801a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Compiler/FrontEnd/Ceval.mo
Original file line number Diff line number Diff line change
Expand Up @@ -5343,7 +5343,8 @@ algorithm
equation
(cache,v1 as Values.INTEGER(indx),_) = ceval(cache,env, e1, impl,NONE(),msg,numIter+1);
e1_1 = ValuesUtil.valueExp(v1);
true = (indx <= dim) and (indx > 0);
// This is a runtime or backend failure; not front-end
// true = (indx <= dim) and (indx > 0);
then
(cache,DAE.INDEX(e1_1));

Expand All @@ -5352,7 +5353,8 @@ algorithm
equation
(cache,v1 as Values.ENUM_LITERAL(index = indx),_) = ceval(cache,env, e1, impl,NONE(),msg,numIter+1);
e1_1 = ValuesUtil.valueExp(v1);
true = (indx <= dim) and (indx > 0);
// This is a runtime or backend failure; not front-end
// true = (indx <= dim) and (indx > 0);
then
(cache,DAE.INDEX(e1_1));

Expand Down

0 comments on commit 260801a

Please sign in to comment.