summaryrefslogtreecommitdiff
path: root/compiler/jvm
diff options
context:
space:
mode:
authorjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2019-01-01 16:24:18 +0000
committerjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2019-01-01 16:24:18 +0000
commit85fbc2554ac5e91b5ec70d56f58215af055bea39 (patch)
tree6712b6d57b58b0f041ede7d80e5487ac1da2e7ea /compiler/jvm
parentbcfeaec31bb5d66c08cbcde5c8a55bfdfec65eb2 (diff)
parente0f59218fee16adf4d5ce3222e3b3fe151d0828e (diff)
downloadfpc-85fbc2554ac5e91b5ec70d56f58215af055bea39.tar.gz
* synchronised with trunk till r40732
git-svn-id: https://svn.freepascal.org/svn/fpc/branches/debug_eh@40733 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'compiler/jvm')
-rw-r--r--compiler/jvm/njvminl.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/jvm/njvminl.pas b/compiler/jvm/njvminl.pas
index f73c5bff8a..866fbd01af 100644
--- a/compiler/jvm/njvminl.pas
+++ b/compiler/jvm/njvminl.pas
@@ -521,7 +521,7 @@ implementation
function tjvminlinenode.first_setlength: tnode;
begin
{ reverse the parameter order so we can process them more easily }
- left:=reverseparameters(tcallparanode(left));
+ reverseparameters(tcallparanode(left));
{ treat setlength(x,0) specially: used to init uninitialised locations }
if not is_shortstring(left.resultdef) and
not assigned(tcallparanode(tcallparanode(left).right).right) and
@@ -535,7 +535,7 @@ implementation
{ strings are handled the same as on other platforms }
if left.resultdef.typ=stringdef then
begin
- left:=reverseparameters(tcallparanode(left));
+ reverseparameters(tcallparanode(left));
result:=inherited first_setlength;
exit;
end;