From 025bdfd7d54639ae512a3022d23af94204220df4 Mon Sep 17 00:00:00 2001 From: Carl Masak Date: Wed, 25 Jul 2018 18:35:47 +0200 Subject: [PATCH] Add missing comment to a new function --- src/spesh/manipulate.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/spesh/manipulate.c b/src/spesh/manipulate.c index f03316ab29..f720d39688 100644 --- a/src/spesh/manipulate.c +++ b/src/spesh/manipulate.c @@ -331,6 +331,9 @@ static MVMSpeshOperand make_temp_reg(MVMThreadContext *tc, MVMSpeshGraph *g, MVM return result; } + +/* Gets a temporary register, adding it to the set of registers of the + * frame. */ MVMSpeshOperand MVM_spesh_manipulate_get_temp_reg(MVMThreadContext *tc, MVMSpeshGraph *g, MVMuint16 kind) { return make_temp_reg(tc, g, kind, 1); }