OSDN Git Service

1998-12-15 Zack Weinberg <zack@rabi.phys.columbia.edu>
authorbrolley <brolley@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 15 Dec 1998 11:23:27 +0000 (11:23 +0000)
committerbrolley <brolley@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 15 Dec 1998 11:23:27 +0000 (11:23 +0000)
* cppalloc.c: Add xstrdup here.
* cpplib.h: Remove savestring prototype.
* cpplib.c: Remove savestring function. s/savestring/xstrdup/
  throughout.
* cppfiles.c: s/savestring/xstrdup/ throughout.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24327 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/cppalloc.c
gcc/cppfiles.c
gcc/cpplib.c
gcc/cpplib.h

index ea9f1d0..0b4e5a8 100644 (file)
@@ -1,5 +1,13 @@
 1998-12-15  Zack Weinberg  <zack@rabi.phys.columbia.edu>
 
+       * cppalloc.c: Add xstrdup here.
+       * cpplib.h: Remove savestring prototype.
+       * cpplib.c: Remove savestring function. s/savestring/xstrdup/
+         throughout. 
+       * cppfiles.c: s/savestring/xstrdup/ throughout.
+
+1998-12-15  Zack Weinberg  <zack@rabi.phys.columbia.edu>
+
        * cpplib.c: Make all directive handlers read their own
           arguments.
          (struct directive): Remove last two arguments from FUNC
index a852d00..880a56d 100644 (file)
@@ -65,3 +65,13 @@ xrealloc (old, size)
     memory_full ();
   return ptr;
 }
+
+char *
+xstrdup (input)
+  const char *input;
+{
+  unsigned size = strlen (input);
+  char *output = xmalloc (size + 1);
+  strcpy (output, input);
+  return output;
+}
index 8c01cdd..108bf87 100644 (file)
@@ -74,7 +74,7 @@ append_include_chain (pfile, list, dir, sysp)
   struct stat st;
   unsigned int len;
 
-  dir = savestring (dir);
+  dir = xstrdup (dir);
   simplify_pathname (dir);
   if (stat (dir, &st))
     {
@@ -410,7 +410,7 @@ find_include_file (pfile, fname, search_start, ihash, before)
     }
   *before = 0;
   *ihash = ih;
-  ih->nshort = savestring (fname);
+  ih->nshort = xstrdup (fname);
   ih->control_macro = NULL;
   
   /* If the pathname is absolute, just open it. */ 
@@ -539,7 +539,7 @@ read_name_map (pfile, dirname)
 
   map_list_ptr = ((struct file_name_map_list *)
                  xmalloc (sizeof (struct file_name_map_list)));
-  map_list_ptr->map_list_name = savestring (dirname);
+  map_list_ptr->map_list_name = xstrdup (dirname);
 
   name = (char *) alloca (strlen (dirname) + strlen (FILE_NAME_MAP_FILE) + 2);
   strcpy (name, dirname);
@@ -772,7 +772,7 @@ actual_directory (pfile, fname)
   size_t dlen;
   struct file_name_list *x;
   
-  dir = savestring (fname);
+  dir = xstrdup (fname);
   last_slash = rindex (dir, '/');
   if (last_slash)
     {
index 537d2dc..fb85bf5 100644 (file)
@@ -4892,7 +4892,7 @@ cpp_start_read (pfile, fname)
          else
            nstore[endp-startp] = '\0';
 
-         include_defaults[num_dirs].fname = savestring (nstore);
+         include_defaults[num_dirs].fname = xstrdup (nstore);
          include_defaults[num_dirs].component = 0;
          include_defaults[num_dirs].cplusplus = opts->cplusplus;
          include_defaults[num_dirs].cxx_aware = 1;
@@ -4915,7 +4915,7 @@ cpp_start_read (pfile, fname)
   if (!opts->no_standard_includes) {
     struct default_include *p = include_defaults;
     char *specd_prefix = opts->include_prefix;
-    char *default_prefix = savestring (GCC_INCLUDE_DIR);
+    char *default_prefix = xstrdup (GCC_INCLUDE_DIR);
     int default_len = 0;
     /* Remove the `include' from /usr/local/lib/gcc.../include.  */
     if (!strcmp (default_prefix + strlen (default_prefix) - 8, "/include")) {
@@ -6164,20 +6164,6 @@ cpp_read_check_assertion (pfile)
   return result;
 }
 
-/* FIXME: savestring() should be renamed strdup() and should
-   be moved into cppalloc.c.  We can't do that right now because
-   then we'd get multiple-symbol clashes with toplev.c and several
-   other people. */
-char *
-savestring (input)
-     char *input;
-{
-  unsigned size = strlen (input);
-  char *output = xmalloc (size + 1);
-  strcpy (output, input);
-  return output;
-}
-\f
 /* Initialize PMARK to remember the current position of PFILE.  */
 
 void
index 7e9aa7d..68c77a1 100644 (file)
@@ -725,8 +725,6 @@ extern int finclude                 PROTO ((cpp_reader *, int,
 extern void deps_output                        PROTO ((cpp_reader *, char *, int));
 extern struct include_hash *include_hash PROTO ((cpp_reader *, char *, int));
 
-/* Bleargh. */
-extern char *savestring                        PROTO ((char *));
 #ifndef INCLUDE_LEN_FUDGE
 #define INCLUDE_LEN_FUDGE 0
 #endif