btest.c (test5): Replace #ifdef guard with 'unused' attribute to fix compile warning...
authorSam Thursfield <sam.thursfield@codethink.co.uk>
Wed, 8 Mar 2017 14:21:21 +0000 (14:21 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Wed, 8 Mar 2017 14:21:21 +0000 (14:21 +0000)
       * btest.c (test5): Replace #ifdef guard with 'unused' attribute
       to fix compile warning when BACKTRACE_SUPPORTED isn't defined.

From-SVN: r245977

libbacktrace/ChangeLog
libbacktrace/btest.c

index 6483285..25cd921 100644 (file)
@@ -1,3 +1,8 @@
+2017-03-08  Sam Thursfield  <sam.thursfield@codethink.co.uk>
+
+       * btest.c (test5): Replace #ifdef guard with 'unused' attribute
+       to fix compile warning when BACKTRACE_SUPPORTED isn't defined.
+
 2017-01-01  Jakub Jelinek  <jakub@redhat.com>
 
        Update copyright years.
index e28a3d8..92cb325 100644 (file)
@@ -616,7 +616,7 @@ f33 (int f1line, int f2line)
   return failures;
 }
 
-#if BACKTRACE_SUPPORTS_DATA
+static int test5 (void) __attribute__ ((unused));
 
 int global = 1;
 
@@ -686,8 +686,6 @@ test5 (void)
   return failures;
 }
 
-#endif /* BACKTRACE_SUPPORTS_DATA  */
-
 static void
 error_callback_create (void *data ATTRIBUTE_UNUSED, const char *msg,
                       int errnum)