comparison dyncall/dyncall_callvm_arm64_apple.c @ 378:4d6c594b15ab

- removed unsupported syscall mode from macos/arm64 callvm, so trying to use it will safely return an error
author Tassilo Philipp
date Mon, 28 Dec 2020 14:12:14 +0100
parents 451299d50c1a
children ddfb9577a00e
comparison
equal deleted inserted replaced
377:51af8ec8d8e6 378:4d6c594b15ab
236 { 236 {
237 DCCallVM_arm64* self = (DCCallVM_arm64*)in_self; 237 DCCallVM_arm64* self = (DCCallVM_arm64*)in_self;
238 DCCallVM_vt* vt; 238 DCCallVM_vt* vt;
239 239
240 switch(mode) { 240 switch(mode) {
241 case DC_CALL_SYS_DEFAULT:
242 case DC_CALL_C_DEFAULT: 241 case DC_CALL_C_DEFAULT:
243 case DC_CALL_C_ARM64: 242 case DC_CALL_C_ARM64:
244 case DC_CALL_C_ELLIPSIS: 243 case DC_CALL_C_ELLIPSIS:
245 vt = &vt_arm64; 244 vt = &vt_arm64;
246 break; 245 break;