From bb7b8441d99543235a9fd8e467a0238fe88777ea Mon Sep 17 00:00:00 2001 From: Adrian Pop Date: Sat, 22 Nov 2014 00:56:15 +0000 Subject: [PATCH] - more matchcontinue -> match git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@23514 f25d12d1-65f4-0310-ae8a-bbce733d8d8e --- Compiler/FrontEnd/CevalFunction.mo | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Compiler/FrontEnd/CevalFunction.mo b/Compiler/FrontEnd/CevalFunction.mo index 582c1b5340b..db66e1b7e86 100644 --- a/Compiler/FrontEnd/CevalFunction.mo +++ b/Compiler/FrontEnd/CevalFunction.mo @@ -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; @@ -1137,7 +1137,7 @@ algorithm Debug.traceln(DAEDump.ppStatementStr(inStatement)); then fail(); - end matchcontinue; + end match; end evaluateStatement; protected function evaluateStatements @@ -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 rest_stmts; @@ -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