Skip to content

Commit

Permalink
- Removed space in front of unary minus and plus when using Dump, to …
Browse files Browse the repository at this point in the history
…make

  linearize/test_05 succeed on linux too (where you get -0 instead of 0).
- Updated test cases due to these changes.
- Updated the parallel test script to handle modelicaML tests.
- Fixed spelling in Absyn.


git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@7328 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
perost committed Dec 9, 2010
1 parent 0d2ba6b commit f326a74
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Compiler/Absyn.mo
Expand Up @@ -2043,7 +2043,7 @@ algorithm
end matchcontinue;
end stringListPath;

public function pathTwoLastIdents "Returns the two last idens of a path"
public function pathTwoLastIdents "Returns the two last idents of a path"
input Path p;
output Path twoLast;
protected
Expand Down
4 changes: 2 additions & 2 deletions Compiler/Dump.mo
Expand Up @@ -4716,8 +4716,8 @@ algorithm
case (Absyn.MUL()) then " * ";
case (Absyn.DIV()) then " / ";
case (Absyn.POW()) then " ^ ";
case (Absyn.UMINUS()) then " -";
case (Absyn.UPLUS()) then " +";
case (Absyn.UMINUS()) then "-";
case (Absyn.UPLUS()) then "+";
/* element-wise arithmetic operators */
case (Absyn.ADD_EW()) then " .+ ";
case (Absyn.SUB_EW()) then " .- ";
Expand Down

0 comments on commit f326a74

Please sign in to comment.