Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 19 Dec 2007 03:27:33 GMT
From:      John Birrell <jb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 131209 for review
Message-ID:  <200712190327.lBJ3RXa8008199@repoman.freebsd.org>

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

Change 131209 by jb@jb_freebsd1 on 2007/12/19 03:27:31

	A couple of our arches have variables that are the same size, so we need to
	leave those out to avoid duplicate case entries.

Affected files ...

.. //depot/projects/dtrace/src/contrib/opensolaris/lib/libdtrace/common/dt_printf.c#8 edit

Differences ...

==== //depot/projects/dtrace/src/contrib/opensolaris/lib/libdtrace/common/dt_printf.c#8 (text) ====

@@ -306,9 +306,11 @@
 	case sizeof (double):
 		return (dt_printf(dtp, fp, format,
 		    *((double *)addr) / n));
+#if !defined(__arm__) && !defined(__powerpc__)
 	case sizeof (long double):
 		return (dt_printf(dtp, fp, format,
 		    *((long double *)addr) / ldn));
+#endif
 	default:
 		return (dt_set_errno(dtp, EDT_DMISMATCH));
 	}



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