From f51fd1ef800da2024c0c108d2a577eaf1597d954 Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Sat, 18 Jul 2020 10:23:40 -0400 Subject: [PATCH] docs: remove redundant comment --- runtime/include/arch/context.h | 1 - 1 file changed, 1 deletion(-) diff --git a/runtime/include/arch/context.h b/runtime/include/arch/context.h index 9cede29..1653e51 100644 --- a/runtime/include/arch/context.h +++ b/runtime/include/arch/context.h @@ -100,7 +100,6 @@ arch_mcontext_save(struct arch_context *sandbox_context, const mcontext_t *activ assert(active_context->gregs[REG_RIP] != 0); assert(active_context->gregs[REG_RSP] != 0); - /* Set variant to slow */ sandbox_context->variant = arch_context_slow; sandbox_context->regs[ureg_rsp] = 0; sandbox_context->regs[ureg_rip] = 0;