This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[COMMIT] Get rid of DEPRECATED_STREQ in dbxread.c


Obvious.

Mark


Index: ChangeLog
from  Mark Kettenis  <kettenis@gnu.org>
 
	* dbxread.c: Include "gdb_string.h".
	(record_minimal_symbol, read_ofile_symtab): Replace
	DEPRECATED_STREQ and DEPRECATED_STREQN with strcmp and strncmp.
	* Makefile.in (dbxread.o): Update dependencies.

 
Index: Makefile.in
===================================================================
RCS file: /cvs/src/src/gdb/Makefile.in,v
retrieving revision 1.669
diff -u -p -r1.669 Makefile.in
--- Makefile.in 14 Nov 2004 19:29:46 -0000 1.669
+++ Makefile.in 20 Nov 2004 10:18:31 -0000
@@ -1830,7 +1830,7 @@ dbxread.o: dbxread.c $(defs_h) $(gdb_str
 	$(gdb_stat_h) $(symtab_h) $(breakpoint_h) $(target_h) $(gdbcore_h) \
 	$(libaout_h) $(objfiles_h) $(buildsym_h) $(stabsread_h) \
 	$(gdb_stabs_h) $(demangle_h) $(complaints_h) $(cp_abi_h) \
-	$(gdb_assert_h) $(aout_aout64_h) $(aout_stab_gnu_h)
+	$(gdb_assert_h) $(gdb_string_h) $(aout_aout64_h) $(aout_stab_gnu_h)
 dcache.o: dcache.c $(defs_h) $(dcache_h) $(gdbcmd_h) $(gdb_string_h) \
 	$(gdbcore_h) $(target_h)
 demangle.o: demangle.c $(defs_h) $(command_h) $(gdbcmd_h) $(demangle_h) \
Index: dbxread.c
===================================================================
RCS file: /cvs/src/src/gdb/dbxread.c,v
retrieving revision 1.76
diff -u -p -r1.76 dbxread.c
--- dbxread.c 18 Nov 2004 22:37:22 -0000 1.76
+++ dbxread.c 20 Nov 2004 10:18:34 -0000
@@ -56,7 +56,9 @@
 #include "demangle.h"
 #include "complaints.h"
 #include "cp-abi.h"
+
 #include "gdb_assert.h"
+#include "gdb_string.h"
 
 #include "aout/aout64.h"
 #include "aout/stab_gnu.h"	/* We always use GNU stabs, not native, now */
@@ -481,7 +483,7 @@ record_minimal_symbol (char *name, CORE_
          Record it as global even if it's local, not global, so
          lookup_minimal_symbol can find it.  We don't check symbol_leading_char
          because for SunOS4 it always is '_'.  */
-      if (name[8] == 'C' && DEPRECATED_STREQ ("__DYNAMIC", name))
+      if (name[8] == 'C' && strcmp ("__DYNAMIC", name) == 0)
 	ms_type = mst_data;
 
       /* Same with virtual function tables, both global and static.  */
@@ -2503,13 +2505,13 @@ read_ofile_symtab (struct partial_symtab
 	{
 	  const char *tempstring = namestring;
 
-	  if (DEPRECATED_STREQ (namestring, GCC_COMPILED_FLAG_SYMBOL))
+	  if (strcmp (namestring, GCC_COMPILED_FLAG_SYMBOL) == 0)
 	    processing_gcc_compilation = 1;
-	  else if (DEPRECATED_STREQ (namestring, GCC2_COMPILED_FLAG_SYMBOL))
+	  else if (strcmp (namestring, GCC2_COMPILED_FLAG_SYMBOL) == 0)
 	    processing_gcc_compilation = 2;
 	  if (tempstring[0] == bfd_get_symbol_leading_char (symfile_bfd))
 	    ++tempstring;
-	  if (DEPRECATED_STREQN (tempstring, "__gnu_compiled", 14))
+	  if (strncmp (tempstring, "__gnu_compiled", 14) == 0)
 	    processing_gcc_compilation = 2;
 	}
 
@@ -2575,9 +2577,9 @@ read_ofile_symtab (struct partial_symtab
 	     However, there is no reason not to accept
 	     the GCC_COMPILED_FLAG_SYMBOL anywhere.  */
 
-	  if (DEPRECATED_STREQ (namestring, GCC_COMPILED_FLAG_SYMBOL))
+	  if (strcmp (namestring, GCC_COMPILED_FLAG_SYMBOL) == 0)
 	    processing_gcc_compilation = 1;
-	  else if (DEPRECATED_STREQ (namestring, GCC2_COMPILED_FLAG_SYMBOL))
+	  else if (strcmp (namestring, GCC2_COMPILED_FLAG_SYMBOL) == 0)
 	    processing_gcc_compilation = 2;
 
 #if 0


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]