about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/m68k
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2004-04-23 20:41:42 +0000
committerAndreas Schwab <schwab@suse.de>2004-04-23 20:41:42 +0000
commitd32b317640d593a4eafd88ebfe23753ec074fe0e (patch)
treefed7c2852b278436770933a97b4650c91e6f27a6 /sysdeps/unix/sysv/linux/m68k
parent091e1f6a1b47232375494f47a6b4d0e5ddea81f9 (diff)
downloadglibc-d32b317640d593a4eafd88ebfe23753ec074fe0e.tar.gz
glibc-d32b317640d593a4eafd88ebfe23753ec074fe0e.tar.xz
glibc-d32b317640d593a4eafd88ebfe23753ec074fe0e.zip
Use __attribute_used__.
Diffstat (limited to 'sysdeps/unix/sysv/linux/m68k')
-rw-r--r--sysdeps/unix/sysv/linux/m68k/register-dump.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/m68k/register-dump.h b/sysdeps/unix/sysv/linux/m68k/register-dump.h
index bece6d5084..a7ac3ca01c 100644
--- a/sysdeps/unix/sysv/linux/m68k/register-dump.h
+++ b/sysdeps/unix/sysv/linux/m68k/register-dump.h
@@ -1,5 +1,5 @@
 /* Dump registers.
-   Copyright (C) 1998, 2002 Free Software Foundation, Inc.
+   Copyright (C) 1998, 2002, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Andreas Schwab <schwab@gnu.org>.
 
@@ -48,7 +48,7 @@
 /* static */ void catch_segfault (int, int, struct sigcontext *);
 
 /* Dummy function so that we can use asm with arguments.  */
-static void __attribute__ ((unused))
+static void __attribute_used__
 __dummy__ (void)
 {
   asm ("\n\
@@ -64,7 +64,7 @@ catch_segfault:\n\
        : : "n" (offsetof (struct sigcontext, sc_fpstate)));
 }
 #define catch_segfault(a,b) \
-  __attribute__ ((unused)) real_catch_segfault(a,b)
+  __attribute_used__ real_catch_segfault(a,b)
 
 static void
 hexvalue (unsigned long int value, char *buf, size_t len)