summaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-19 22:10:12 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-19 22:10:12 +0000
commit27322735afae833bcecd54fbb551ad4132e96235 (patch)
tree1cd28fbf97850e3c6185e59f861ba3f9010dfd24 /internal.h
parent797098f8e8c7575188dbd61b96c3f766002b87f6 (diff)
revert r65807
it didn't work. http://ci.rvm.jp/results/trunk-mjit@silicon-docker/1468677 and skips broken tests for now. But this issue should be fixed soon. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65814 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/internal.h b/internal.h
index ca9e16cde5..d36723b273 100644
--- a/internal.h
+++ b/internal.h
@@ -1633,12 +1633,10 @@ VALUE rb_math_sqrt(VALUE);
#if USE_MJIT
extern int mjit_enabled;
VALUE mjit_pause(int wait_p);
-void mjit_pause_without_ints(void);
VALUE mjit_resume(void);
#else
#define mjit_enabled 0
static inline VALUE mjit_pause(int wait_p){ return Qnil; } /* unreachable */
-static inline void mjit_pause_without_ints(void){} /* unreachable */
static inline VALUE mjit_resume(void){ return Qnil; } /* unreachable */
#endif