Browse Source

- disabled genmultistringadd() for the JVM target for now

git-svn-id: branches/jvmbackend@18479 -
Jonas Maebe 14 years ago
parent
commit
990a4ccb64
1 changed files with 2 additions and 2 deletions
  1. 2 2
      compiler/nadd.pas

+ 2 - 2
compiler/nadd.pas

@@ -2505,7 +2505,7 @@ implementation
 {$endif cpuneedsmulhelper}
       begin
          result:=nil;
-
+{$ifndef jvm}
          { Can we optimize multiple string additions into a single call?
            This need to be done on a complete tree to detect the multiple
            add nodes and is therefor done before the subtrees are processed }
@@ -2514,7 +2514,7 @@ implementation
              result := genmultistringadd(self);
              exit;
            end;
-
+{$endif jvm}
          { first do the two subtrees }
          firstpass(left);
          firstpass(right);