aboutsummaryrefslogtreecommitdiff
path: root/gcc/jit/libgccjit.map
diff options
context:
space:
mode:
authorAntoni Boucher <bouanto@zoho.com>2022-04-12 17:23:18 -0400
committerDavid Malcolm <dmalcolm@redhat.com>2022-04-12 17:23:18 -0400
commit79e1a6fb9babb34dfcb99964c37d3c4f8bb619ca (patch)
tree6aeb43e3c82280d3187b1fcfb85b69137b89a48f /gcc/jit/libgccjit.map
parent5780ff348ad4430383fd67c6f0c572d8c3e721ad (diff)
downloadgcc-79e1a6fb9babb34dfcb99964c37d3c4f8bb619ca.zip
gcc-79e1a6fb9babb34dfcb99964c37d3c4f8bb619ca.tar.gz
gcc-79e1a6fb9babb34dfcb99964c37d3c4f8bb619ca.tar.bz2
libgccjit: Add function to hide stderr logs [PR104073]
gcc/jit/ PR jit/104073 * docs/_build/texinfo/libgccjit.texi: Regenerate. * docs/topics/compatibility.rst (LIBGCCJIT_ABI_23): New ABI tag. * docs/topics/contexts.rst: Add documentation for the new function gcc_jit_context_set_bool_print_errors_to_stderr. * jit-common.h: New enum value (INNER_BOOL_OPTION_PRINT_ERRORS_TO_STDERR). * jit-recording.cc: Handle the new option INNER_BOOL_OPTION_PRINT_ERRORS_TO_STDERR. * libgccjit.cc: New function (gcc_jit_context_set_bool_print_errors_to_stderr). * libgccjit.h: New function (gcc_jit_context_set_bool_print_errors_to_stderr). * libgccjit.map (LIBGCCJIT_ABI_23): New ABI tag.
Diffstat (limited to 'gcc/jit/libgccjit.map')
-rw-r--r--gcc/jit/libgccjit.map5
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/jit/libgccjit.map b/gcc/jit/libgccjit.map
index 4b3de8b..7370603 100644
--- a/gcc/jit/libgccjit.map
+++ b/gcc/jit/libgccjit.map
@@ -260,3 +260,8 @@ LIBGCCJIT_ABI_22 {
global:
gcc_jit_lvalue_set_register_name;
} LIBGCCJIT_ABI_21;
+
+LIBGCCJIT_ABI_23 {
+ global:
+ gcc_jit_context_set_bool_print_errors_to_stderr;
+} LIBGCCJIT_ABI_22;