From 1d5955bced166b8f7ac02ebe37c41833d7e9a435 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 24 Mar 2016 05:57:32 +0100 Subject: [PATCH] (libretro-common) Update comments --- libretro-common/libco/amd64.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libretro-common/libco/amd64.c b/libretro-common/libco/amd64.c index fd95843a3b..24944159fd 100644 --- a/libretro-common/libco/amd64.c +++ b/libretro-common/libco/amd64.c @@ -24,7 +24,7 @@ static void (*co_swap)(cothread_t, cothread_t) = 0; #endif #ifdef _WIN32 -//ABI: Win64 +/* ABI: Win64 */ static unsigned char co_swap_function[] = { 0x48, 0x89, 0x22, /* mov [rdx],rsp */ 0x48, 0x8b, 0x21, /* mov rsp,[rcx] */ @@ -81,7 +81,7 @@ void co_init(void) sizeof(co_swap_function), PAGE_EXECUTE_READWRITE, &old_privileges); } #else -//ABI: SystemV +/* ABI: SystemV */ #ifndef CO_USE_INLINE_ASM static unsigned char co_swap_function[] = { 0x48, 0x89, 0x26, /* mov [rsi],rsp */