From 0805cba73572a5150975a0dfdc4461ae0872e90c Mon Sep 17 00:00:00 2001 From: Maxime Chevalier-Boisvert Date: Fri, 9 Apr 2021 14:46:58 -0400 Subject: [PATCH] Update yjit_codegen.c --- yjit_codegen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yjit_codegen.c b/yjit_codegen.c index bd42c7f346..0d90cdeb43 100644 --- a/yjit_codegen.c +++ b/yjit_codegen.c @@ -920,7 +920,7 @@ guard_two_fixnums(ctx_t* ctx, uint8_t* side_exit) jz_ptr(cb, side_exit); } - // TODO: set stack types in context + // Set stack types in context ctx_set_opnd_type(ctx, OPND_STACK(0), TYPE_FIXNUM); ctx_set_opnd_type(ctx, OPND_STACK(1), TYPE_FIXNUM); }