Add unused attribute where necessary to quiet GCC 6 warnings.
authorCary Coutant <ccoutant@gmail.com>
Thu, 3 Mar 2016 22:13:10 +0000 (14:13 -0800)
committerCary Coutant <ccoutant@gmail.com>
Wed, 9 Mar 2016 04:34:18 +0000 (20:34 -0800)
gold/
PR 19751
* arm.cc (Reloc_stub::Key::name): Add unused attribute.
* dirsearch.cc (Dir_caches::~Dir_caches): Likewise.

gold/ChangeLog
gold/arm.cc
gold/dirsearch.cc

index d3ec5de..e16db61 100644 (file)
@@ -1,4 +1,10 @@
 2016-03-08  Cary Coutant  <ccoutant@gmail.com>
+
+        PR 19751
+        * arm.cc (Reloc_stub::Key::name): Add unused attribute.
+        * dirsearch.cc (Dir_caches::~Dir_caches): Likewise.
+
+2016-03-08  Cary Coutant  <ccoutant@gmail.com>
             Vladimir Radosavljevic  <vladimir.radosavljevic@imgtec.com>
 
        * output.cc (Output_reloc_writer): New type.
index ed13c87..c47b002 100644 (file)
@@ -597,7 +597,7 @@ class Reloc_stub : public Stub
 
     // Name of key.  This is mainly for debugging.
     std::string
-    name() const;
+    name() const ATTRIBUTE_UNUSED;
 
    private:
     // Stub type.
index 1b3fefa..6178332 100644 (file)
@@ -102,7 +102,7 @@ class Dir_caches
     : lock_(), caches_()
   { }
 
-  ~Dir_caches();
+  ~Dir_caches() ATTRIBUTE_UNUSED;
 
   // Add a cache for a directory.
   void add(const char*);