aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Kenner <kenner@vlsi1.ultra.nyu.edu>2001-03-10 15:36:25 +0000
committerRichard Kenner <kenner@gcc.gnu.org>2001-03-10 10:36:25 -0500
commitea23d5400fa97028252affe38bac9ee6cb861f8f (patch)
tree41bc16434291d8097a58999ccd1fba1a61771a80
parent0f7fa3d01f482328963c1bbfcd1ab64a42531c42 (diff)
downloadgcc-ea23d5400fa97028252affe38bac9ee6cb861f8f.zip
gcc-ea23d5400fa97028252affe38bac9ee6cb861f8f.tar.gz
gcc-ea23d5400fa97028252affe38bac9ee6cb861f8f.tar.bz2
mips-tdump.c (read_seek): Call xmalloc, not malloc.
* mips-tdump.c (read_seek): Call xmalloc, not malloc. * mips-tfile.c: Don't #undef rindex; not used. From-SVN: r40366
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/mips-tdump.c2
-rw-r--r--gcc/mips-tfile.c7
3 files changed, 9 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 0598574..076ad34 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+Sat Mar 10 10:36:45 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
+
+ * mips-tdump.c (read_seek): Call xmalloc, not malloc.
+ * mips-tfile.c: Don't #undef rindex; not used.
+
Sat Mar 10 14:34:59 CET 2001 Jan Hubicka <jh@suse.cz>
* i386.h (DBX_REGISTER_NUMBER): Return proper values for 64bits.
diff --git a/gcc/mips-tdump.c b/gcc/mips-tdump.c
index 613606f..d56b6d6 100644
--- a/gcc/mips-tdump.c
+++ b/gcc/mips-tdump.c
@@ -291,7 +291,7 @@ read_seek (ptr, size, offset, context)
if (size == 0) /* nothing to read */
return ptr;
- if ((ptr == (PTR_T) 0 && (ptr = malloc (size)) == (PTR_T) 0)
+ if ((ptr == (PTR_T) 0 && (ptr = xmalloc (size)) == (PTR_T) 0)
|| (tfile_offset != offset && lseek (tfile_fd, offset, 0) == -1)
|| (read_size = read (tfile_fd, ptr, size)) < 0)
{
diff --git a/gcc/mips-tfile.c b/gcc/mips-tfile.c
index ff24ce8..38cd70c 100644
--- a/gcc/mips-tfile.c
+++ b/gcc/mips-tfile.c
@@ -2,8 +2,8 @@
contain debugging information specified by the GNU compiler
in the form of comments (the mips assembler does not support
assembly access to debug information).
- Copyright (C) 1991, 1993, 1994, 1995, 1997, 1998,
- 1999, 2000 Free Software Foundation, Inc.
+ Copyright (C) 1991, 1993, 1994, 1995, 1997, 1998, 1999, 2000, 2001
+ Free Software Foundation, Inc.
Contributed by Michael Meissner (meissner@cygnus.com).
This file is part of GNU CC.
@@ -662,9 +662,8 @@ main ()
#else /* MIPS_DEBUGGING defined */
/* The local and global symbols have a field index, so undo any defines
- of index -> strchr and rindex -> strrchr. */
+ of index -> strchr. */
-#undef rindex
#undef index
#include <signal.h>