From 7971a1246b0505fa2c5fab1b86b3072a22655c8b Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 24 Aug 2017 07:31:56 +0000 Subject: [PATCH] compile.c: show failed instructions * compile.c (iseq_set_sequence): show failed instructions at adjuststack mismatch. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59652 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- compile.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/compile.c b/compile.c index fcadf29cc2..64916e3e96 100644 --- a/compile.c +++ b/compile.c @@ -1000,6 +1000,8 @@ debug_list(ISEQ_ARG_DECLARE LINK_ANCHOR *const anchor) #if CPDEBUG < 0 #define debug_list(anc) debug_list(iseq, (anc)) #endif +#else +#define debug_list(anc) ((void)0) #endif static LABEL * @@ -1914,11 +1916,13 @@ iseq_set_sequence(rb_iseq_t *iseq, LINK_ANCHOR *const anchor) generated_iseq[code_index++] = BIN(pop); } else if (diff < 0) { + int label_no = adjust->label ? adjust->label->label_no : -1; xfree(generated_iseq); xfree(line_info_table); + debug_list(anchor); COMPILE_ERROR(iseq, adjust->line_no, - "iseq_set_sequence: adjust bug %d < %d", - orig_sp, sp); + "iseq_set_sequence: adjust bug to %d %d < %d", + label_no, orig_sp, sp); return COMPILE_NG; } }