From 4eaf7b118643cedd965b9ea6f09e7dbdb0a7f0c4 Mon Sep 17 00:00:00 2001 From: usa Date: Thu, 4 Dec 2003 01:45:07 +0000 Subject: * ext/dl/sym.c (rb_dlsym_guardcall): __declspec(noinline) is VC7 feature. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5102 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ ext/dl/sym.c | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index a5c4de1c19..adbecd3f23 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Dec 4 10:43:58 2003 NAKAMURA Usaku + + * ext/dl/sym.c (rb_dlsym_guardcall): __declspec(noinline) is VC7 + feature. + Thu Dec 4 10:27:12 2003 Minero Aoki * lib/net/http.rb: update hyperlink to the Japanese document. diff --git a/ext/dl/sym.c b/ext/dl/sym.c index adf6137edf..8044e6a4bb 100644 --- a/ext/dl/sym.c +++ b/ext/dl/sym.c @@ -354,11 +354,11 @@ rb_dl_win32_set_last_error(VALUE self, VALUE val) #ifdef DLSTACK_GUARD # ifdef __MSVC_RUNTIME_CHECKS -# pragma runtime_checks("s", off) +# pragma runtime_checks("s", off) # endif -#ifdef _MSC_VER +# if _MSC_VER >= 1300 __declspec(noinline) -#endif +# endif static int rb_dlsym_guardcall(char type, ANY_TYPE *ret, long *stack, void *func) { @@ -432,7 +432,7 @@ rb_dlsym_guardcall(char type, ANY_TYPE *ret, long *stack, void *func) return 1; } # ifdef __MSVC_RUNTIME_CHECKS -# pragma runtime_checks("s", restore) +# pragma runtime_checks("s", restore) # endif #endif /* defined(DLSTACK_GUARD) */ -- cgit v1.2.3