gdb: Fix ATTRIBUTE_NONNULL usage
authorPedro Alves <palves@redhat.com>
Wed, 8 Mar 2017 15:52:16 +0000 (15:52 +0000)
committerPedro Alves <palves@redhat.com>
Wed, 8 Mar 2017 15:52:16 +0000 (15:52 +0000)
Should fix the build failure with Clang mentioned at
<https://sourceware.org/bugzilla/show_bug.cgi?id=21206#c2>:

 In file included from ../../binutils-gdb/gdb/dwarf2read.c:72:
 ../../binutils-gdb/gdb/common/gdb_unlinker.h:35:35: error: '__nonnull__' attribute is invalid for the implicit this argument
   unlinker (const char *filename) ATTRIBUTE_NONNULL (1)
   ^                  ~
 ../../binutils-gdb/gdb/../include/ansidecl.h:169:48: note: expanded from macro 'ATTRIBUTE_NONNULL'
 #  define ATTRIBUTE_NONNULL(m) __attribute__ ((__nonnull__ (m)))

gdb/ChangeLog:
2017-03-08  Pedro Alves  <palves@redhat.com>

PR 21206
* common/gdb_unlinker.h (unlinker::unlinker): Attribute nonnull
goes to argument 2, not 1.

gdb/ChangeLog
gdb/common/gdb_unlinker.h

index 92847f7..ce37aa7 100644 (file)
@@ -1,5 +1,11 @@
 2017-03-08  Pedro Alves  <palves@redhat.com>
 
+       PR 21206
+       * common/gdb_unlinker.h (unlinker::unlinker): Attribute nonnull
+       goes to argument 2, not 1.
+
+2017-03-08  Pedro Alves  <palves@redhat.com>
+
        PR cli/21218
        * top.c (gdb_readline_wrapper): Avoid passing NULL to
        display_gdb_prompt.
index 0f3b98a..e93fa79 100644 (file)
@@ -32,7 +32,7 @@ class unlinker
 {
  public:
 
-  unlinker (const char *filename) ATTRIBUTE_NONNULL (1)
+  unlinker (const char *filename) ATTRIBUTE_NONNULL (2)
     : m_filename (filename)
   {
     gdb_assert (filename != NULL);