summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDJ Delorie <dj@delorie.com>2009-07-17 20:20:45 +0000
committerDJ Delorie <dj@delorie.com>2009-07-17 20:20:45 +0000
commitc36e8ee1a34cd739db442aecc4119e340bc875a4 (patch)
tree441b37067148504721b3b68a1f227b0fab19094b /include
parent69a897c5ebef800839a0fe73afd1a5a8f5f07220 (diff)
downloadbinutils-redhat-c36e8ee1a34cd739db442aecc4119e340bc875a4.tar.gz
merge from gcc
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog7
-rw-r--r--include/demangle.h4
2 files changed, 11 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 74c0ead4bc..aec79eed7f 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,10 @@
+2009-07-17 Jan Kratochvil <jan.kratochvil@redhat.com>
+
+ * demangle.h
+ (enum demangle_component_type <DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS>)
+ (enum demangle_component_type <DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS>):
+ New.
+
2009-07-10 Tom Tromey <tromey@redhat.com>
* dwarf2.h: New file, moved from elf/.
diff --git a/include/demangle.h b/include/demangle.h
index eb39c7c13c..0bcae2fdbb 100644
--- a/include/demangle.h
+++ b/include/demangle.h
@@ -377,6 +377,10 @@ enum demangle_component_type
DEMANGLE_COMPONENT_CHARACTER,
/* A decltype type. */
DEMANGLE_COMPONENT_DECLTYPE,
+ /* Global constructors keyed to name. */
+ DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS,
+ /* Global destructors keyed to name. */
+ DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS,
/* A pack expansion. */
DEMANGLE_COMPONENT_PACK_EXPANSION
};