OSDN Git Service

PR libffi/46661
[pf3gnuchains/gcc-fork.git] / libffi / testsuite / libffi.call / cls_pointer_stack.c
index c7ab55b..d631cf8 100644 (file)
@@ -4,7 +4,7 @@
    PR:                 none.
    Originator: Blake Chaffin 6/7/2007  */
 
-/* { dg-do run { xfail mips*-*-* arm*-*-* strongarm*-*-* xscale*-*-* } } */
+/* { dg-do run { xfail strongarm*-*-* xscale*-*-* } } */
 #include "ffitest.h"
 
 static long dummyVar;
@@ -93,20 +93,12 @@ cls_pointer_gn(ffi_cif* cif __UNUSED__, void* resp,
 int main (void)
 {
        ffi_cif cif;
-#ifndef USING_MMAP
-       static ffi_closure      cl;
-#endif
-       ffi_closure*    pcl;
+        void *code;
+       ffi_closure*    pcl = ffi_closure_alloc(sizeof(ffi_closure), &code);
        void*                   args[3];
 //     ffi_type                cls_pointer_type;
        ffi_type*               arg_types[3];
 
-#ifdef USING_MMAP
-       pcl = allocate_mmap(sizeof(ffi_closure));
-#else
-       pcl = &cl;
-#endif
-
 /*     cls_pointer_type.size = sizeof(void*);
        cls_pointer_type.alignment = 0;
        cls_pointer_type.type = FFI_TYPE_POINTER;
@@ -135,9 +127,9 @@ int main (void)
        // { dg-output "\n0x8acf1356 0x01234567: 0x8bf258bd" }
        // { dg-output "\nres: 0x8bf258bd" }
 
-       CHECK(ffi_prep_closure(pcl, &cif, cls_pointer_gn, NULL) == FFI_OK);
+       CHECK(ffi_prep_closure_loc(pcl, &cif, cls_pointer_gn, NULL, code) == FFI_OK);
 
-       res = (ffi_arg)((void*(*)(void*, void*))(pcl))(arg1, arg2);
+       res = (ffi_arg)(uintptr_t)((void*(*)(void*, void*))(code))(arg1, arg2);
 
        printf("res: 0x%08x\n", (unsigned int) res);
        // { dg-output "\n0x01234567 0x89abcdef: 0x8acf1356" }