diff options
author | David Malcolm <dmalcolm@redhat.com> | 2021-11-11 18:32:21 -0500 |
---|---|---|
committer | David Malcolm <dmalcolm@redhat.com> | 2021-11-12 08:20:45 -0500 |
commit | aa1fd30df56d752e3d5a81af409875a1f1e3e327 (patch) | |
tree | 97f42edbfd0a3032a336578d1de532615a78ebf4 /gcc/jit/docs/examples/tut04-toyvm | |
parent | 1b62cddcf091fb8cadf575246a7d3ff778650a6b (diff) | |
download | gcc-aa1fd30df56d752e3d5a81af409875a1f1e3e327.zip gcc-aa1fd30df56d752e3d5a81af409875a1f1e3e327.tar.gz gcc-aa1fd30df56d752e3d5a81af409875a1f1e3e327.tar.bz2 |
jit: fix -Werror=format-overflow= in testsuite [PR103199]
gcc/jit/ChangeLog:
PR jit/103199
* docs/examples/tut04-toyvm/toyvm.c (toyvm_function_compile):
Increase size of buffer.
* docs/examples/tut04-toyvm/toyvm.cc
(compilation_state::create_function): Likewise.
Signed-off-by: David Malcolm <dmalcolm@redhat.com>
Diffstat (limited to 'gcc/jit/docs/examples/tut04-toyvm')
-rw-r--r-- | gcc/jit/docs/examples/tut04-toyvm/toyvm.c | 2 | ||||
-rw-r--r-- | gcc/jit/docs/examples/tut04-toyvm/toyvm.cc | 2 |
2 files changed, 2 insertions, 2 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); } diff --git a/gcc/jit/docs/examples/tut04-toyvm/toyvm.cc b/gcc/jit/docs/examples/tut04-toyvm/toyvm.cc index 7e95501..81c8045 100644 --- a/gcc/jit/docs/examples/tut04-toyvm/toyvm.cc +++ b/gcc/jit/docs/examples/tut04-toyvm/toyvm.cc @@ -633,7 +633,7 @@ compilation_state::create_function (const char *funcname) /* Create a block per operation. */ for (int pc = 0; pc < toyvmfn.fn_num_ops; pc++) { - char buf[16]; + char buf[100]; sprintf (buf, "instr%i", pc); op_blocks[pc] = fn.new_block (buf); } |