summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2003-12-07 17:22:29 +0000
committerAndrew Cagney <cagney@redhat.com>2003-12-07 17:22:29 +0000
commit105d09b2cb6103c97fcea2d37c98fa08c22a4380 (patch)
tree909cf9a54b1f6bc0e423a56ed7902e444891fde5
parent787724d8af163ba7abc8c84e431e25503c926038 (diff)
downloadgdb-105d09b2cb6103c97fcea2d37c98fa08c22a4380.tar.gz
2003-12-07 Andrew Cagney <cagney@redhat.com>
* defs.h (DEPRECATED_STREQN, DEPRECATED_STREQ): Simplify by directly calling strcmp equivalents. Add disclaimer.
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/defs.h9
2 files changed, 12 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index c1d9b4e552f..46063c8f935 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2003-12-07 Andrew Cagney <cagney@redhat.com>
+
+ * defs.h (DEPRECATED_STREQN, DEPRECATED_STREQ): Simplify by
+ directly calling strcmp equivalents. Add disclaimer.
+
2003-12-06 Andrew Cagney <cagney@redhat.com>
* remote.c (remote_fetch_registers): For short packets, explicitly
diff --git a/gdb/defs.h b/gdb/defs.h
index 98d151d029f..9db0af2cdc2 100644
--- a/gdb/defs.h
+++ b/gdb/defs.h
@@ -160,8 +160,13 @@ typedef bfd_vma CORE_ADDR;
making untested changes, the remaining references were deprecated
rather than replaced. */
-#define DEPRECATED_STREQ(a,b) (*(a) == *(b) ? !strcmp ((a), (b)) : 0)
-#define DEPRECATED_STREQN(a,b,c) (*(a) == *(b) ? !strncmp ((a), (b), (c)) : 0)
+/* DISCLAIMER: cagney/2003-11-23: Simplified definition of these
+ macros so that they just map directly onto strcmp equivalent. I'm
+ not responsible for any breakage due to code that relied on the old
+ underlying implementation. */
+
+#define DEPRECATED_STREQ(a,b) (strcmp ((a), (b)) == 0)
+#define DEPRECATED_STREQN(a,b,c) (strncmp ((a), (b), (c)) == 0)
/* Check if a character is one of the commonly used C++ marker characters. */
extern int is_cplus_marker (int);