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:
parent
8a73532bd8
commit
6afa7415c7
1 changed files with 4 additions and 1 deletions
5
gc.c
5
gc.c
|
|
@ -432,7 +432,10 @@ static unsigned int STACK_LEVEL_MAX = 655300;
|
||||||
# define STACK_END (&stack_end)
|
# define STACK_END (&stack_end)
|
||||||
#else
|
#else
|
||||||
# if defined(__GNUC__) && defined(USE_BUILTIN_FRAME_ADDRESS) && !defined(__ia64__)
|
# 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)
|
stack_end_address(void)
|
||||||
{
|
{
|
||||||
return (VALUE *)__builtin_frame_address(0);
|
return (VALUE *)__builtin_frame_address(0);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue