diff dyncall/dyncall_callvm_arm64.c @ 651:cab0031c6691

- arm64 files: * // to /* comments */ (b/c dyncall supports pre-c99 toolchains, in this case it's more for consistency reasons throughout dyncall, as arm64 is newer than 1999) * removed comment with dead link * cosmetics - portasm readme addition
author Tassilo Philipp
date Thu, 07 Mar 2024 10:34:10 +0100
parents 71c884e610f0
children
line wrap: on
line diff
--- a/dyncall/dyncall_callvm_arm64.c	Thu Mar 07 10:23:16 2024 +0100
+++ b/dyncall/dyncall_callvm_arm64.c	Thu Mar 07 10:34:10 2024 +0100
@@ -59,11 +59,11 @@
   }
 }
 
-static void a_bool    (DCCallVM* self, DCbool  x)   { a_i64(self, (DClonglong)x); }
-static void a_char    (DCCallVM* self, DCchar  x)   { a_i64(self, x); }
-static void a_short   (DCCallVM* self, DCshort x)   { a_i64(self, x); }
-static void a_int     (DCCallVM* self, DCint x)     { a_i64(self, x); }
-static void a_long    (DCCallVM* self, DClong  x)   { a_i64(self, x); }
+static void a_bool    (DCCallVM* self, DCbool    x) { a_i64(self, (DClonglong)x); }
+static void a_char    (DCCallVM* self, DCchar    x) { a_i64(self, x); }
+static void a_short   (DCCallVM* self, DCshort   x) { a_i64(self, x); }
+static void a_int     (DCCallVM* self, DCint     x) { a_i64(self, x); }
+static void a_long    (DCCallVM* self, DClong    x) { a_i64(self, x); }
 static void a_pointer (DCCallVM* self, DCpointer x) { a_i64(self, (DClonglong) x ); }
 
 static void a_float(DCCallVM* in_p, DCfloat x)