diff options
Diffstat (limited to 'gcc/jit/libgccjit.c')
-rw-r--r-- | gcc/jit/libgccjit.c | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/gcc/jit/libgccjit.c b/gcc/jit/libgccjit.c index ad8ee75..a78b3e7 100644 --- a/gcc/jit/libgccjit.c +++ b/gcc/jit/libgccjit.c @@ -386,7 +386,7 @@ gcc_jit_context_new_location (gcc_jit_context *ctxt, { RETURN_NULL_IF_FAIL (ctxt, NULL, NULL, "NULL context"); JIT_LOG_FUNC (ctxt->get_logger ()); - return (gcc_jit_location *)ctxt->new_location (filename, line, column); + return (gcc_jit_location *)ctxt->new_location (filename, line, column, true); } /* Public entrypoint. See description in libgccjit.h. @@ -2237,6 +2237,22 @@ gcc_jit_context_set_logfile (gcc_jit_context *ctxt, /* Public entrypoint. See description in libgccjit.h. After error-checking, the real work is done by the + gcc::jit::recording::context::dump_reproducer_to_file method in + jit-recording.c. */ + +void +gcc_jit_context_dump_reproducer_to_file (gcc_jit_context *ctxt, + const char *path) +{ + RETURN_IF_FAIL (ctxt, NULL, NULL, "NULL context"); + JIT_LOG_FUNC (ctxt->get_logger ()); + RETURN_IF_FAIL (path, ctxt, NULL, "NULL path"); + ctxt->dump_reproducer_to_file (path); +} + +/* Public entrypoint. See description in libgccjit.h. + + After error-checking, the real work is done by the gcc::jit::recording::context::get_first_error method in jit-recording.c. */ |