From 1a130056f7ec23cd4d68cb2d954353d38fabadd1 Mon Sep 17 00:00:00 2001 From: Sven/Sarah Barth Date: Mon, 13 Jan 2025 22:22:26 +0100 Subject: [PATCH] * reformat statement for better readability --- compiler/ninl.pas | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/compiler/ninl.pas b/compiler/ninl.pas index 559d84a46d..c57fcc0905 100644 --- a/compiler/ninl.pas +++ b/compiler/ninl.pas @@ -6226,7 +6226,10 @@ implementation addstatement(stmt,cassignmentnode.create(ctemprefnode.create(tmp),result)); cmpn:=cmpn.getcopy; inserttypeconv_internal(cmpn,resultdef); - addstatement(stmt,cassignmentnode.create(tcallparanode(succn),caddnode.create(equaln,cmpn,ctemprefnode.create(tmp)))); + addstatement(stmt, + cassignmentnode.create(tcallparanode(succn), + caddnode.create(equaln,cmpn, + ctemprefnode.create(tmp)))); addstatement(stmt,ctempdeletenode.create_normal_temp(tmp)); addstatement(stmt,ctemprefnode.create(tmp)); result:=n;