diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-04-20 06:33:11 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-04-20 06:33:11 +0000 |
commit | fbfde146ca8e9e2c830bbd659027a6ca69aa8c33 (patch) | |
tree | c330cdd430849f6ed133ec1856f60f5d076a916f /libc/sysdeps/linux/i386/bits/mathinline.h | |
parent | 44ea58d5387b030e80ca1a5c1ea8bbd8bfc0cd54 (diff) |
Cope with gcc 3.4's more aggressive persuit of attribute unused
Diffstat (limited to 'libc/sysdeps/linux/i386/bits/mathinline.h')
-rw-r--r-- | libc/sysdeps/linux/i386/bits/mathinline.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/i386/bits/mathinline.h b/libc/sysdeps/linux/i386/bits/mathinline.h index 0464003b7..d39a122ca 100644 --- a/libc/sysdeps/linux/i386/bits/mathinline.h +++ b/libc/sysdeps/linux/i386/bits/mathinline.h @@ -408,7 +408,7 @@ __inline_mathcodeNP_ (long double, __expl, __x, __exp_code) __inline_mathcodeNP (tan, __x, \ register long double __value; \ - register long double __value2 __attribute__ ((__unused__)); \ + register long double __value2 __attribute_used__; \ __asm __volatile__ \ ("fptan" \ : "=t" (__value2), "=u" (__value) : "0" (__x)); \ |