* configure.in (ALWAYS_INLINE): force compilers the function inlined.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55101 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2016-05-21 13:24:32 +00:00
Родитель 118ee2a734
Коммит ceea7ecef9
3 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Sat May 21 21:07:18 2016 NARUSE, Yui <naruse@ruby-lang.org>
* configure.in (ALWAYS_INLINE): force compilers the function inlined.
Sat May 21 16:16:03 2016 Kazuki Yamaguchi <k@rhe.jp> Sat May 21 16:16:03 2016 Kazuki Yamaguchi <k@rhe.jp>
* ext/openssl/ossl_ssl.c (ossl_ssl_stop): Don't free the SSL struct * ext/openssl/ossl_ssl.c (ossl_ssl_stop): Don't free the SSL struct

Просмотреть файл

@ -1807,6 +1807,7 @@ RUBY_FUNC_ATTRIBUTE(__deprecated__, DEPRECATED)
RUBY_FUNC_ATTRIBUTE(__deprecated__("by "@%:@n), DEPRECATED_BY(n,x), rb_cv_func_deprecated_by) RUBY_FUNC_ATTRIBUTE(__deprecated__("by "@%:@n), DEPRECATED_BY(n,x), rb_cv_func_deprecated_by)
RUBY_TYPE_ATTRIBUTE(__deprecated__ mesg, DEPRECATED_TYPE(mesg,x), rb_cv_type_deprecated) RUBY_TYPE_ATTRIBUTE(__deprecated__ mesg, DEPRECATED_TYPE(mesg,x), rb_cv_type_deprecated)
RUBY_FUNC_ATTRIBUTE(__noinline__, NOINLINE) RUBY_FUNC_ATTRIBUTE(__noinline__, NOINLINE)
RUBY_FUNC_ATTRIBUTE(__always_inline__, ALWAYS_INLINE)
RUBY_FUNC_ATTRIBUTE(__error__, ERRORFUNC) RUBY_FUNC_ATTRIBUTE(__error__, ERRORFUNC)
RUBY_FUNC_ATTRIBUTE(__warning__, WARNINGFUNC) RUBY_FUNC_ATTRIBUTE(__warning__, WARNINGFUNC)
RUBY_FUNC_ATTRIBUTE(__weak__, WEAK, rb_cv_func_weak) RUBY_FUNC_ATTRIBUTE(__weak__, WEAK, rb_cv_func_weak)

Просмотреть файл

@ -596,6 +596,7 @@ $(CONFIG_H): $(MKFILES) $(srcdir)/win32/Makefile.sub $(win_srcdir)/Makefile.sub
#define DEPRECATED_TYPE(mesg, x) __declspec(deprecated mesg) x #define DEPRECATED_TYPE(mesg, x) __declspec(deprecated mesg) x
#define NOINLINE(x) __declspec(noinline) x #define NOINLINE(x) __declspec(noinline) x
!endif !endif
#define ALWAYS_INLINE(x) __forceinline x
#define UNREACHABLE __assume(0) #define UNREACHABLE __assume(0)
#define ASSUME(x) __assume(!!(x)) #define ASSUME(x) __assume(!!(x))
#define FUNC_STDCALL(x) __stdcall x #define FUNC_STDCALL(x) __stdcall x