Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 12 Apr 2003 09:21:15 -0700 (PDT)
From:      Robert Drehmel <robert@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 28828 for review
Message-ID:  <200304121621.h3CGLFTC024402@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=28828

Change 28828 by robert@robert_spes on 2003/04/12 09:20:25

	If compiling for an `sgimips' platform, define an ARC pointer
	to have exactly the same size as an `void *' has.

Affected files ...

.. //depot/projects/mips/sys/boot/arc/include/arctypes.h#2 edit

Differences ...

==== //depot/projects/mips/sys/boot/arc/include/arctypes.h#2 (text+ko) ====

@@ -69,9 +69,15 @@
 
 #endif /* 0 */
 
+#if defined(__alpha__)
 typedef struct {
    int32_t adr;
 } arcptr;
+#elif defined(sgimips)
+typedef struct {
+   void *adr;
+} arcptr;
+#endif
 
 typedef struct {
    u_int32_t	SPBSignature;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200304121621.h3CGLFTC024402>