testsuite: Introduce a __STDCALL__ compiler-specific macro
authorJosh Triplett <josh@joshtriplett.org>
Sun, 16 Mar 2014 22:16:18 +0000 (15:16 -0700)
committerJosh Triplett <josh@joshtriplett.org>
Sun, 16 Mar 2014 22:27:07 +0000 (15:27 -0700)
Several tests want to use stdcall, which differs in syntax by compiler,
so introduce a macro for it in ffitest.h.

testsuite/libffi.call/closure_stdcall.c
testsuite/libffi.call/ffitest.h

index 871d576..fd1e4b0 100644 (file)
@@ -23,10 +23,7 @@ closure_test_stdcall(ffi_cif* cif __UNUSED__, void* resp, void** args,
 
 }
 
-#ifndef _MSC_VER
-#define __stdcall __attribute__((stdcall))
-#endif
-typedef int (__stdcall *closure_test_type0)(int, int, int, int);
+typedef int (__STDCALL__ *closure_test_type0)(int, int, int, int);
 
 int main (void)
 {
index 7c0f8e4..2fc2535 100644 (file)
 #undef __UNUSED__
 #if defined(__GNUC__)
 #define __UNUSED__ __attribute__((__unused__))
+#define __STDCALL__ __attribute__((stdcall))
 #define __FASTCALL__ __attribute__((fastcall))
 #else
 #define __UNUSED__
+#define __STDCALL__ __stdcall
 #define __FASTCALL__ __fastcall
 #endif