1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

load.c: suppress warning

* load.c (rb_load_internal): split to suppress false "clobbered"
  warning by gcc 4.4.5.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43499 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2013-11-01 07:37:27 +00:00
parent ea09a7b755
commit 97b88a1773

15
load.c
View file

@ -558,16 +558,15 @@ rb_provide(const char *feature)
NORETURN(static void load_failed(VALUE));
static void
rb_load_internal(VALUE fname, int wrap)
static inline void
rb_load_internal0(rb_thread_t *th, VALUE fname, int wrap)
{
int state;
rb_thread_t *th = GET_THREAD();
volatile VALUE wrapper = th->top_wrapper;
volatile VALUE self = th->top_self;
volatile int loaded = FALSE;
volatile int mild_compile_error;
#if !defined __GNUC__ || (__GNUC__ == 4 && __GNUC_MINOR__ == 4)
#if !defined __GNUC__
rb_thread_t *volatile th0 = th;
#endif
@ -599,7 +598,7 @@ rb_load_internal(VALUE fname, int wrap)
}
POP_TAG();
#if !defined __GNUC__ || (__GNUC__ == 4 && __GNUC_MINOR__ == 4)
#if !defined __GNUC__
th = th0;
fname = RB_GC_GUARD(fname);
#endif
@ -621,6 +620,12 @@ rb_load_internal(VALUE fname, int wrap)
}
}
static void
rb_load_internal(VALUE fname, int wrap)
{
rb_load_internal0(GET_THREAD(), fname, wrap);
}
void
rb_load(VALUE fname, int wrap)
{