From 55385e81bbd5180785fecbe5baf490aa7551e833 Mon Sep 17 00:00:00 2001 From: Yuxiao Mao Date: Fri, 22 Nov 2024 08:58:06 +0100 Subject: [PATCH] Fix function arg spaces --- hld/Eval.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hld/Eval.hx b/hld/Eval.hx index 82d4524..34b81ac 100644 --- a/hld/Eval.hx +++ b/hld/Eval.hx @@ -989,7 +989,7 @@ class Eval { return str; } - function readBytesStrAt(length, read: Int->Int, t:HLType, pos:String) : String { + function readBytesStrAt( length : Int , read : Int->Int, t : HLType, pos : String) : String { var pos = toInt(eval(pos)); var blen = align.typeSize(t); if( pos < 0 || (length >= 0 && pos > length-blen) ) @@ -1021,7 +1021,7 @@ class Eval { return s.file+":" + s.line; } - function readRegAddress(index) : VarAddress { + function readRegAddress( index ) : VarAddress { var r = module.getFunctionRegs(funIndex)[index]; if( r == null ) return ANone;