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

gcc noinline attribute is available since gcc-3.1.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7613 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2004-12-20 13:55:00 +00:00
parent 8a73532bd8
commit 6afa7415c7

5
gc.c
View file

@ -432,7 +432,10 @@ static unsigned int STACK_LEVEL_MAX = 655300;
# define STACK_END (&stack_end)
#else
# if defined(__GNUC__) && defined(USE_BUILTIN_FRAME_ADDRESS) && !defined(__ia64__)
__attribute__ ((noinline)) static VALUE *
# if ( __GNUC__ == 3 && __GNUC_MINOR__ > 0 ) || __GNUC__ > 3
__attribute__ ((noinline))
# endif
static VALUE *
stack_end_address(void)
{
return (VALUE *)__builtin_frame_address(0);