Date: Sat, 10 Jul 2004 17:59:26 GMT From: Marcel Moolenaar <marcel@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 56973 for review Message-ID: <200407101759.i6AHxQvQ034091@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=56973 Change 56973 by marcel@marcel_nfs on 2004/07/10 17:58:54 IFC @56972 (GDB backend) Affected files ... .. //depot/projects/gdb/lib/libc/gen/isinf.c#2 integrate .. //depot/projects/gdb/sys/alpha/alpha/gdb_machdep.c#7 integrate .. //depot/projects/gdb/sys/alpha/include/gdb_machdep.h#3 integrate .. //depot/projects/gdb/sys/amd64/amd64/gdb_machdep.c#3 integrate .. //depot/projects/gdb/sys/amd64/include/gdb_machdep.h#4 integrate .. //depot/projects/gdb/sys/gdb/gdb.h#8 integrate .. //depot/projects/gdb/sys/gdb/gdb_int.h#8 integrate .. //depot/projects/gdb/sys/gdb/gdb_main.c#18 integrate .. //depot/projects/gdb/sys/gdb/gdb_packet.c#11 integrate .. //depot/projects/gdb/sys/i386/i386/gdb_machdep.c#8 integrate .. //depot/projects/gdb/sys/i386/include/gdb_machdep.h#7 integrate .. //depot/projects/gdb/sys/ia64/ia64/gdb_machdep.c#11 integrate .. //depot/projects/gdb/sys/ia64/include/gdb_machdep.h#8 integrate .. //depot/projects/gdb/sys/sparc64/include/gdb_machdep.h#5 integrate .. //depot/projects/gdb/sys/sparc64/sparc64/gdb_machdep.c#7 integrate Differences ... ==== //depot/projects/gdb/lib/libc/gen/isinf.c#2 (text+ko) ==== @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD: src/lib/libc/gen/isinf.c,v 1.1 2004/07/09 03:32:40 das Exp $ + * $FreeBSD: src/lib/libc/gen/isinf.c,v 1.2 2004/07/10 15:52:26 marcel Exp $ */ #include <math.h> @@ -62,5 +62,9 @@ u.e = e; mask_nbit_l(u); +#ifndef __alpha__ return (u.bits.exp == 32767 && u.bits.manl == 0 && u.bits.manh == 0); +#else + return (u.bits.exp == 2047 && u.bits.manl == 0 && u.bits.manh == 0); +#endif } ==== //depot/projects/gdb/sys/alpha/alpha/gdb_machdep.c#7 (text+ko) ==== ==== //depot/projects/gdb/sys/alpha/include/gdb_machdep.h#3 (text+ko) ==== ==== //depot/projects/gdb/sys/amd64/amd64/gdb_machdep.c#3 (text+ko) ==== ==== //depot/projects/gdb/sys/amd64/include/gdb_machdep.h#4 (text+ko) ==== ==== //depot/projects/gdb/sys/gdb/gdb.h#8 (text+ko) ==== ==== //depot/projects/gdb/sys/gdb/gdb_int.h#8 (text+ko) ==== ==== //depot/projects/gdb/sys/gdb/gdb_main.c#18 (text+ko) ==== ==== //depot/projects/gdb/sys/gdb/gdb_packet.c#11 (text+ko) ==== ==== //depot/projects/gdb/sys/i386/i386/gdb_machdep.c#8 (text+ko) ==== ==== //depot/projects/gdb/sys/i386/include/gdb_machdep.h#7 (text+ko) ==== ==== //depot/projects/gdb/sys/ia64/ia64/gdb_machdep.c#11 (text+ko) ==== ==== //depot/projects/gdb/sys/ia64/include/gdb_machdep.h#8 (text+ko) ==== ==== //depot/projects/gdb/sys/sparc64/include/gdb_machdep.h#5 (text+ko) ==== ==== //depot/projects/gdb/sys/sparc64/sparc64/gdb_machdep.c#7 (text+ko) ====
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200407101759.i6AHxQvQ034091>