summaryrefslogtreecommitdiff
path: root/ruby.h
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-07-02 08:11:24 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-07-02 08:11:24 +0000
commit7215b7236362aef075fb7c7bc957cfc1f767cce3 (patch)
tree4d2f52d97b4623dbd90c25ecba4537bbfdd73e4d /ruby.h
parent12bed479ec5777392077ac70c0996bbc44bd5a20 (diff)
* defines.h (FLUSH_REGISTER_WINDOWS): defined for IA64.
(flush_register_windows): declare flush_register_windows. * eval.c (flush_register_windows): new function. * ruby.h (NOINLINE): move up to be effective in defines.h. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8696 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ruby.h')
-rw-r--r--ruby.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/ruby.h b/ruby.h
index e321099504..71f769eb1b 100644
--- a/ruby.h
+++ b/ruby.h
@@ -19,6 +19,11 @@ extern "C" {
#endif
#include "config.h"
+
+#ifndef NOINLINE
+# define NOINLINE(x) x
+#endif
+
#include "defines.h"
#ifdef HAVE_STDLIB_H
@@ -59,9 +64,6 @@ extern "C" {
#ifndef DEPRECATED
# define DEPRECATED(x) x
#endif
-#ifndef NOINLINE
-# define NOINLINE(x) x
-#endif
#if defined(HAVE_ALLOCA_H)
#include <alloca.h>