sparc v8 and testsuite fixes
authorAnthony Green <green@moxielogic.com>
Sat, 9 Feb 2013 11:54:40 +0000 (06:54 -0500)
committerAnthony Green <green@moxielogic.com>
Sat, 9 Feb 2013 11:54:40 +0000 (06:54 -0500)
src/sparc/v8.S
testsuite/libffi.call/ffitest.h
testsuite/libffi.call/many2.c
testsuite/libffi.call/negint.c

index ba3cdac..6bf7ac0 100644 (file)
@@ -242,6 +242,10 @@ ffi_closure_v8:
        be,a    done1
         ldd    [%fp-8], %i0
 
+       cmp     %o0, FFI_TYPE_UINT64
+       be,a    done1
+        ldd    [%fp-8], %i0
+
        ld      [%fp-8], %i0
 done1:
        jmp     %i7+8
index 830fcc7..136a7a6 100644 (file)
 #define PRId64 "I64d"
 #endif
 
+#ifndef PRIuPTR
+#define PRIuPTR "u"
+#endif
index 1077159..98eac60 100644 (file)
 
 typedef unsigned char u8;
 
-__attribute__((noinline)) uint8_t
+#ifdef __GNUC__
+__attribute__((noinline))
+#endif
+uint8_t
 foo (uint8_t a, uint8_t b, uint8_t c, uint8_t d,
      uint8_t e, uint8_t f, uint8_t g)
 {
index 3168113..6e2f26f 100644 (file)
@@ -5,7 +5,6 @@
    Originator: From the original ffitest.c  */
 
 /* { dg-do run } */
-/* { dg-options -O2 } */
 
 #include "ffitest.h"