summaryrefslogtreecommitdiff
path: root/vm.h
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-28 13:31:08 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-28 13:31:08 +0000
commit480c602bdc9ad15c40e093bd1acf9776e3ade5de (patch)
tree75986031b90ef37b150e1a42e19d048f633d2922 /vm.h
parentc4a0a17df12c2bcc3777a846765982e94c2cc3bd (diff)
* win32/Makefile.sub: define FUNC_FASTCALL macro.
* vm.h: fix to use FUNC_FASTCALL macro. TODO: add FUNC_FASTCALL macro by configure. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12650 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm.h')
-rw-r--r--vm.h20
1 files changed, 4 insertions, 16 deletions
diff --git a/vm.h b/vm.h
index 3b87033344..072563e1f7 100644
--- a/vm.h
+++ b/vm.h
@@ -101,28 +101,16 @@ error !
#define ELABEL(x)
#define LABEL_PTR(x) &LABEL(x)
-#if __GCC__
-#define FASTCALL(x) x __attribute__ ((fastcall))
-#define FASTCALL_KWD_GCC __attribute__ ((fastcall))
-#define FASTCALL_KWD_VC
-
-#elif defined(_MSC_VER)
-#define FASTCALL(x) __fastcall x
-#define FASTCALL_KWD_GCC
-#define FASTCALL_KWD_VC __fastcall
-#else
-
-#define FASTCALL
-#define FASTCALL_KWD_GCC
-#define FASTCALL_KWD_VC
+#ifndef FUNC_FASTCALL
+#define FUNC_FASTCALL(x) x
#endif
typedef rb_control_frame_t *
- (FASTCALL_KWD_VC *insn_func_type)(rb_thread_t *, rb_control_frame_t *) FASTCALL_KWD_GCC;
+ (FUNC_FASTCALL(*insn_func_type))(rb_thread_t *, rb_control_frame_t *);
#define INSN_ENTRY(insn) \
static rb_control_frame_t * \
- FASTCALL(LABEL(insn)(rb_thread_t *th, rb_control_frame_t *reg_cfp)) {
+ FUNC_FASTCALL(LABEL(insn))(rb_thread_t *th, rb_control_frame_t *reg_cfp) {
#define END_INSN(insn) return reg_cfp;}