Skip to content

Commit

Permalink
- Disable failtraces that are not useful.
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@4672 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Dec 11, 2009
1 parent c3f3c64 commit f8629e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Compiler/Types.mo
Expand Up @@ -5488,13 +5488,13 @@ algorithm
case ((DAE.T_TUPLE(tys),optPath))
equation
(dummyExpList,dummyBoxedTypeList) = makeDummyExpAndTypeLists(tys);
(_,tys,_) = matchTypeTuple(dummyExpList, tys, dummyBoxedTypeList, {}, matchTypeRegular, true);
(_,tys,_) = matchTypeTuple(dummyExpList, tys, dummyBoxedTypeList, {}, matchTypeRegular, false);
then ((DAE.T_TUPLE(tys),optPath));
case (ty as (DAE.T_NORETCALL,_)) then ty;
case ty1
equation
({e},{ty2}) = makeDummyExpAndTypeLists({ty1});
(_,ty) = matchType(e, ty1, ty2, true);
(_,ty) = matchType(e, ty1, ty2, false);
then ty;
end matchcontinue;
end makeFunctionPolymorphicReferenceResType;
Expand Down

0 comments on commit f8629e2

Please sign in to comment.