Răsfoiți Sursa

- disabled genmultistringadd() for the JVM target for now

git-svn-id: branches/jvmbackend@18479 -
Jonas Maebe 14 ani în urmă
părinte
comite
990a4ccb64
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  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);