diff options
author | Jakub Jelinek <jakub@redhat.com> | 2018-12-11 08:45:47 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2018-12-11 08:45:47 +0100 |
commit | 3b14d7fad64a5ab82798955579e2d1a9b3be6853 (patch) | |
tree | da469db3105da4817d1bd18fe673c7b123ea2bfe | |
parent | 7b1ff60122fda6e106e54b792713f8eb16424cf2 (diff) | |
download | gcc-3b14d7fad64a5ab82798955579e2d1a9b3be6853.zip gcc-3b14d7fad64a5ab82798955579e2d1a9b3be6853.tar.gz gcc-3b14d7fad64a5ab82798955579e2d1a9b3be6853.tar.bz2 |
re PR c/88430 (-Wmissing-attributes warnings when including libquadmath headers)
PR c/88430
* quadmath_weak.h (__qmath2): Add __quadmath_throw.
From-SVN: r266972
-rw-r--r-- | libquadmath/ChangeLog | 5 | ||||
-rw-r--r-- | libquadmath/quadmath_weak.h | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/libquadmath/ChangeLog b/libquadmath/ChangeLog index 51c9ad2..3c3197e 100644 --- a/libquadmath/ChangeLog +++ b/libquadmath/ChangeLog @@ -1,3 +1,8 @@ +2018-12-11 Jakub Jelinek <jakub@redhat.com> + + PR c/88430 + * quadmath_weak.h (__qmath2): Add __quadmath_throw. + 2018-11-07 Joseph Myers <joseph@codesourcery.com> * quadmath-imp.h (ieee854_float128): Use mantissa0, mantissa1, diff --git a/libquadmath/quadmath_weak.h b/libquadmath/quadmath_weak.h index f7100de..a97c813 100644 --- a/libquadmath/quadmath_weak.h +++ b/libquadmath/quadmath_weak.h @@ -1,5 +1,5 @@ /* GCC Quad-Precision Math Library - Copyright (C) 2010, 2011 Free Software Foundation, Inc. + Copyright (C) 2010-2018 Free Software Foundation, Inc. Written by Tobias Burnus <burnus@net-b.de> This file is part of the libquadmath library. @@ -25,7 +25,8 @@ Boston, MA 02110-1301, USA. */ #if SUPPORTS_WEAK # define __qmath2(name,name2,type) \ - static __typeof(type) name __attribute__ ((__weakref__(#name2))); + static __typeof(type) name __attribute__ ((__weakref__(#name2))) \ + __quadmath_throw; # define __qmath_(name) __qmath_ ## name #else # define __qmath2(name,name2,type) |