Document pragmatics of why gdb_assert() is lowercase.
authorAndrew Cagney <cagney@redhat.com>
Thu, 1 Mar 2001 17:30:05 +0000 (17:30 +0000)
committerAndrew Cagney <cagney@redhat.com>
Thu, 1 Mar 2001 17:30:05 +0000 (17:30 +0000)
gdb/ChangeLog
gdb/gdb_assert.h

index d498458..d3d62be 100644 (file)
@@ -1,5 +1,9 @@
 2001-03-01  Andrew Cagney  <ac131313@redhat.com>
 
+       * gdb_assert.h: Document pragmatics behind gdb_assert's case.
+
+2001-03-01  Andrew Cagney  <ac131313@redhat.com>
+
        * Makefile.in (gdbtk-cmds.o): Add $(regcache_h) to dependency
        lists.
        (mi-main.o): Ditto.
index c9979db..4f0bcdc 100644 (file)
 #ifndef GDB_ASSERT_H
 #define GDB_ASSERT_H
 
+/* PRAGMATICS: "gdb_assert.h":gdb_assert() is a lower case (rather
+   than upper case) macro since that provides the closest fit to the
+   existing lower case macro <assert.h>:assert() that it is
+   replacing. */
+
 #define gdb_assert(expr)                                                      \
   ((void) ((expr) ? 0 :                                                       \
           (gdb_assert_fail (#expr, __FILE__, __LINE__, ASSERT_FUNCTION), 0)))