[pushed] gdbtypes.resolve_dynamic_range: Add function description.

Message ID 1402390386-17344-1-git-send-email-brobecker@adacore.com
State Committed
Headers

Commit Message

Joel Brobecker June 10, 2014, 8:53 a.m. UTC
  Hello,

I noticed while reviewing a patch that I forgot to add a description
to a new function I introduced. Bad bad bad, so fixed thusly.

gdb/ChangeLog:

        * gdbtypes (resolve_dynamic_range): Add function description.

Tested by simply rebuilding GDB.

---
 gdb/ChangeLog  | 4 ++++
 gdb/gdbtypes.c | 3 +++
 2 files changed, 7 insertions(+)
  

Patch

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index efdf5b3..3097a31 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@ 
+2014-06-10  Joel Brobecker  <brobecker@adacore.com>
+
+	* gdbtypes (resolve_dynamic_range): Add function description.
+
 2014-06-09  Gary Benson  <gbenson@redhat.com>
 
 	* common/signals.c (gdb_signal_from_host): Reorder to separate
diff --git a/gdb/gdbtypes.c b/gdb/gdbtypes.c
index bbb3fe9..d0c002f 100644
--- a/gdb/gdbtypes.c
+++ b/gdb/gdbtypes.c
@@ -1653,6 +1653,9 @@  is_dynamic_type (struct type *type)
   return 0;
 }
 
+/* Given a dynamic range type (dyn_range_type), return a static version
+   of that type.  */
+
 static struct type *
 resolve_dynamic_range (struct type *dyn_range_type)
 {