Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2011-07-22 18:37:51 +0400
committerDJ Delorie <dj@redhat.com>2011-07-22 18:37:51 +0400
commita2b52d6b297c6f2633ff6403e74be70edce382ee (patch)
treeb942ecea98d1eaeba90a8d1e4f6da5280f4fa62d
parente9b5cc32f7f6fbd46ee06e528085979b5bf1e737 (diff)
merge from gcc
-rw-r--r--include/ChangeLog28
-rw-r--r--include/libiberty.h5
2 files changed, 32 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 2252587e5..c563678f6 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,31 @@
+2011-07-22 Jakub Jelinek <jakub@redhat.com>
+
+ PR c++/49756
+ * libiberty.h (stack_limit_increase): New prototype.
+
+2011-07-13 Sriraman Tallam <tmsriram@google.com>
+
+ * plugin-api.h
+ (ld_plugin_section): New struct.
+ (ld_plugin_get_section_count): New typedef.
+ (ld_plugin_get_section_type): New typedef.
+ (ld_plugin_get_section_name): New typedef.
+ (ld_plugin_get_section_contents): New typedef.
+ (ld_plugin_update_section_order): New typedef.
+ (ld_plugin_allow_section_ordering): New typedef.
+ (LDPT_GET_SECTION_COUNT): New enum value.
+ (LDPT_GET_SECTION_TYPE): New enum value.
+ (LDPT_GET_SECTION_NAME): New enum value.
+ (LDPT_GET_SECTION_CONTENTS): New enum value.
+ (LDPT_UPDATE_SECTION_ORDER): New enum value.
+ (LDPT_ALLOW_SECTION_ORDERING): New enum value.
+ (tv_get_section_count): New struct members.
+ (tv_get_section_type): New struct members.
+ (tv_get_section_name): New struct members.
+ (tv_get_section_contents): New struct members.
+ (tv_update_section_order): New struct members.
+ (tv_allow_section_ordering): New struct members.
+
2011-07-15 Alan Modra <amodra@gmail.com>
* bfdlink.h (struct bfd_link_info): Use ENUM_BITFIELD for strip,
diff --git a/include/libiberty.h b/include/libiberty.h
index 1cc7250bf..32eb83a04 100644
--- a/include/libiberty.h
+++ b/include/libiberty.h
@@ -1,7 +1,7 @@
/* Function declarations for libiberty.
Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
- 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+ 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
Note - certain prototypes declared in this header file are for
functions whoes implementation copyright does not belong to the
@@ -637,6 +637,9 @@ extern int strverscmp (const char *, const char *);
/* Set the title of a process */
extern void setproctitle (const char *name, ...);
+/* Increase stack limit if possible. */
+extern void stack_limit_increase (unsigned long);
+
#define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0]))
/* Drastically simplified alloca configurator. If we're using GCC,