Skip to content

Commit

Permalink
- more matchcontinue -> match
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@23514 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
adrpo committed Nov 22, 2014
1 parent 36d923a commit bb7b844
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Compiler/FrontEnd/CevalFunction.mo
Expand Up @@ -1036,7 +1036,7 @@ protected function evaluateStatement
output SymbolTable outST;
algorithm
(outCache, outEnv, outLoopControl, outST) :=
matchcontinue(inStatement, inCache, inEnv, inST)
match(inStatement, inCache, inEnv, inST)
local
FCore.Cache cache;
FCore.Graph env;
Expand Down Expand Up @@ -1137,7 +1137,7 @@ algorithm
Debug.traceln(DAEDump.ppStatementStr(inStatement));
then
fail();
end matchcontinue;
end match;
end evaluateStatement;

protected function evaluateStatements
Expand Down Expand Up @@ -1170,7 +1170,7 @@ protected function evaluateStatements2
output SymbolTable outST;
algorithm
(outCache, outEnv, outLoopControl, outST) :=
matchcontinue(inStatement, inCache, inEnv, inLoopControl, inST)
match(inStatement, inCache, inEnv, inLoopControl, inST)
local
DAE.Statement stmt;
list<DAE.Statement> rest_stmts;
Expand All @@ -1188,7 +1188,7 @@ algorithm
evaluateStatements2(rest_stmts, cache, env, loop_ctrl, st);
then
(cache, env, loop_ctrl, st);
end matchcontinue;
end match;
end evaluateStatements2;

protected function evaluateTupleAssignStatement
Expand Down

0 comments on commit bb7b844

Please sign in to comment.