From a61ac83575e77fc6a6db6dc711ea0fe61596cc67 Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Thu, 30 Sep 2021 12:26:01 -0400 Subject: [PATCH] chore: remove FIXME --- runtime/include/arch/x86_64/context.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/runtime/include/arch/x86_64/context.h b/runtime/include/arch/x86_64/context.h index 20ea223..debe1f7 100644 --- a/runtime/include/arch/x86_64/context.h +++ b/runtime/include/arch/x86_64/context.h @@ -40,8 +40,6 @@ arch_context_init(struct arch_context *actx, reg_t ip, reg_t sp) : "a"(sp) : "memory", "cc", "rbx"); } - // FIXME: Is the klobber list correct? Issue #129 - // : "memory", "cc", "rbx", "rsi", "rdi"); actx->regs[UREG_SP] = sp; actx->regs[UREG_IP] = ip;