mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-21 01:12:32 +08:00
merge from gcc
This commit is contained in:
parent
cf9bb588b3
commit
24e829d007
@ -1,3 +1,12 @@
|
||||
2012-04-02 Tristan Gingold <gingold@adacore.com>
|
||||
|
||||
* stack-limit.c: Includes ansidecl.h.
|
||||
(stack_limit_increase): Add ATTRIBUTE_UNUSED
|
||||
|
||||
2012-03-20 Jason Merrill <jason@redhat.com>
|
||||
|
||||
* cp-demangle.c (cplus_demangle_type): Handle 'auto'.
|
||||
|
||||
2012-03-07 Jason Merrill <jason@redhat.com>
|
||||
|
||||
* cp-demangle.c (cplus_demangle_operators): Add li.
|
||||
|
@ -2270,6 +2270,11 @@ cplus_demangle_type (struct d_info *di)
|
||||
cplus_demangle_type (di), NULL);
|
||||
can_subst = 1;
|
||||
break;
|
||||
|
||||
case 'a':
|
||||
/* auto */
|
||||
ret = d_make_name (di, "auto", 4);
|
||||
break;
|
||||
|
||||
case 'f':
|
||||
/* 32-bit decimal floating point */
|
||||
|
@ -34,6 +34,7 @@ Attempt to increase stack size limit to @var{pref} bytes if possible.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include "ansidecl.h"
|
||||
|
||||
#ifdef HAVE_STDINT_H
|
||||
#include <stdint.h>
|
||||
@ -43,7 +44,7 @@ Attempt to increase stack size limit to @var{pref} bytes if possible.
|
||||
#endif
|
||||
|
||||
void
|
||||
stack_limit_increase (unsigned long pref)
|
||||
stack_limit_increase (unsigned long pref ATTRIBUTE_UNUSED)
|
||||
{
|
||||
#if defined(HAVE_SETRLIMIT) && defined(HAVE_GETRLIMIT) \
|
||||
&& defined(RLIMIT_STACK) && defined(RLIM_INFINITY)
|
||||
|
@ -4075,6 +4075,12 @@ decltype (new int{}) f1<int>(int)
|
||||
--format=gnu-v3
|
||||
_Zli2_wPKc
|
||||
operator"" _w(char const*)
|
||||
--format=gnu-v3
|
||||
_Z1fIiEDTnw_Dapifp_EET_
|
||||
decltype (new auto({parm#1})) f<int>(int)
|
||||
--format=gnu-v3
|
||||
_Z1fIiERDaRKT_S1_
|
||||
auto& f<int>(int const&, int)
|
||||
#
|
||||
# Ada (GNAT) tests.
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user