From d71f8233735c29084123bcba463b9e955982410c Mon Sep 17 00:00:00 2001 From: florian Date: Fri, 14 Feb 2025 20:33:25 +0100 Subject: [PATCH] * cleanup --- compiler/aarch64/cgcpu.pas | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/compiler/aarch64/cgcpu.pas b/compiler/aarch64/cgcpu.pas index 1f8183f4e1..bed3986209 100644 --- a/compiler/aarch64/cgcpu.pas +++ b/compiler/aarch64/cgcpu.pas @@ -1297,13 +1297,9 @@ implementation bitsize: longint; begin if srcsize in [OS_64,OS_S64] then - begin - bitsize:=64; - end + bitsize:=64 else - begin - bitsize:=32; - end; + bitsize:=32; if not(not_zero) then { source is 0 -> dst will have to become 255 } list.concat(taicpu.op_reg_const(A_CMP,src,0));