Skip to content

Commit

Permalink
- rml-fix
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@21854 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Marcus Walther committed Aug 12, 2014
1 parent 511b259 commit a69ec4c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Compiler/BackEnd/HpcOmMemory.mo
Expand Up @@ -1523,7 +1523,9 @@ encapsulated package HpcOmMemory
algorithm
oCref := match(iCref)
case(DAE.CREF_QUAL(ident,identType,subscriptLst,componentRef))
then DAE.CREF_QUAL(ident,identType,subscriptLst,removeSubscripts(componentRef));
equation
componentRef = removeSubscripts(componentRef);
then DAE.CREF_QUAL(ident,identType,subscriptLst,componentRef);
case(DAE.CREF_IDENT(ident,identType,subscriptLst))
then DAE.CREF_IDENT(ident,identType,{});
case(DAE.CREF_ITER(ident,index,identType,subscriptLst))
Expand Down

0 comments on commit a69ec4c

Please sign in to comment.