summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2005-12-11 02:16:04 +0000
committerDJ Delorie <dj@redhat.com>2005-12-11 02:16:04 +0000
commitd92b26d1aeb5c0fa1cabfd4a334a0b149c25994e (patch)
tree38d21a5b3651aa28b025196e502ff02976483e29 /include
parent9b020020eceaf32af640283992ea9c16aa4bd3c2 (diff)
downloadcygnal-d92b26d1aeb5c0fa1cabfd4a334a0b149c25994e.tar.gz
cygnal-d92b26d1aeb5c0fa1cabfd4a334a0b149c25994e.tar.bz2
cygnal-d92b26d1aeb5c0fa1cabfd4a334a0b149c25994e.zip
merge from gcc
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog6
-rw-r--r--include/demangle.h2
2 files changed, 8 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 3b2f3efd8..bc763b3cb 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,9 @@
+2005-12-10 Terry Laurenzo <tlaurenzo@gmail.com>
+
+ PR java/9861
+ * demangle.h : Add DMGL_RET_POSTFIX define to enable alternative
+ output format for return types
+
2005-11-07 Nathan Sidwell <nathan@codesourcery.com>
Add ms2.
diff --git a/include/demangle.h b/include/demangle.h
index 304a4c4e4..af2946727 100644
--- a/include/demangle.h
+++ b/include/demangle.h
@@ -35,6 +35,8 @@ extern "C" {
#define DMGL_JAVA (1 << 2) /* Demangle as Java rather than C++. */
#define DMGL_VERBOSE (1 << 3) /* Include implementation details. */
#define DMGL_TYPES (1 << 4) /* Also try to demangle type encodings. */
+#define DMGL_RET_POSTFIX (1 << 5) /* Print function return types (when
+ present) after function signature */
#define DMGL_AUTO (1 << 8)
#define DMGL_GNU (1 << 9)