Skip to content

Commit

Permalink
- omc +t now dumps info about unary ops
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@11107 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Feb 13, 2012
1 parent 9d09d76 commit 28ecd8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Compiler/FrontEnd/ExpressionDump.mo
Expand Up @@ -319,8 +319,8 @@ public function unaryopSymbol
algorithm
outString:=
match (inOperator)
case (DAE.UMINUS(ty = _)) then "-";
case (DAE.UMINUS_ARR(ty = _)) then "-";
case (DAE.UMINUS(ty = _)) then Util.if_(Config.typeinfo(),"-<UMINUS>","-");
case (DAE.UMINUS_ARR(ty = _)) then Util.if_(Config.typeinfo(),"-<UMINUS_ARR>","-");
end match;
end unaryopSymbol;

Expand Down

0 comments on commit 28ecd8d

Please sign in to comment.