summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-08-02 03:02:22 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-08-02 03:02:22 +0000
commit823898790369cd826f97c1d010b86a1c78070ba9 (patch)
tree7ea49852f2a4905dcc035bd308d35cf7d2ba9a78
parent5ba4d948ffebd7f316acd58b76d66697ea464369 (diff)
suppress warnings when RUBY_USE_SETJMPEX
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59467 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--sprintf.c4
-rw-r--r--vm_trace.c3
2 files changed, 7 insertions, 0 deletions
diff --git a/sprintf.c b/sprintf.c
index 52771eb52a..4ee7e1d4f0 100644
--- a/sprintf.c
+++ b/sprintf.c
@@ -1247,6 +1247,10 @@ fmt_setup(char *buf, size_t size, int c, int flags, int width, int prec)
#endif
#define lower_hexdigits (ruby_hexdigits+0)
#define upper_hexdigits (ruby_hexdigits+16)
+#if defined RUBY_USE_SETJMPEX && RUBY_USE_SETJMPEX
+# undef MAYBE_UNUSED
+# define MAYBE_UNUSED(x) x = 0
+#endif
#include "vsnprintf.c"
static char *
diff --git a/vm_trace.c b/vm_trace.c
index 7b8c76b3b4..284950e08d 100644
--- a/vm_trace.c
+++ b/vm_trace.c
@@ -402,6 +402,9 @@ rb_suppress_tracing(VALUE (*func)(VALUE), VALUE arg)
if (!tracing) th->vm->trace_running--;
if (state) {
+#if defined RUBY_USE_SETJMPEX && RUBY_USE_SETJMPEX
+ RB_GC_GUARD(result);
+#endif
TH_JUMP_TAG(th, state);
}