aboutsummaryrefslogtreecommitdiff
path: root/gcc/jit/docs/examples/tut04-toyvm/toyvm.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/jit/docs/examples/tut04-toyvm/toyvm.c')
-rw-r--r--gcc/jit/docs/examples/tut04-toyvm/toyvm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/jit/docs/examples/tut04-toyvm/toyvm.c b/gcc/jit/docs/examples/tut04-toyvm/toyvm.c
index 8ea716e..63418f9 100644
--- a/gcc/jit/docs/examples/tut04-toyvm/toyvm.c
+++ b/gcc/jit/docs/examples/tut04-toyvm/toyvm.c
@@ -561,7 +561,7 @@ toyvm_function_compile (toyvm_function *fn)
/* Create a block per operation. */
for (pc = 0; pc < fn->fn_num_ops; pc++)
{
- char buf[16];
+ char buf[100];
sprintf (buf, "instr%i", pc);
state.op_blocks[pc] = gcc_jit_function_new_block (state.fn, buf);
}