PERFORCE change 131209 for review
John Birrell
jb at FreeBSD.org
Tue Dec 18 19:27:33 PST 2007
http://perforce.freebsd.org/chv.cgi?CH=131209
Change 131209 by jb at 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));
}
More information about the p4-projects
mailing list