diff options
author | Terry Laurenzo <tlaurenzo@gmail.com> | 2005-12-11 01:34:02 +0000 |
---|---|---|
committer | Terry Laurenzo <tlaurenzo@gcc.gnu.org> | 2005-12-11 01:34:02 +0000 |
commit | 92aed1cbf42362b47fa6db66122d33278d7a4ea3 (patch) | |
tree | d3a6af3b149154654e7557325e0a2d26a3b83556 /include | |
parent | b6105bf2c397ba0aba21454a17e013974e0fe657 (diff) | |
download | gcc-92aed1cbf42362b47fa6db66122d33278d7a4ea3.zip gcc-92aed1cbf42362b47fa6db66122d33278d7a4ea3.tar.gz gcc-92aed1cbf42362b47fa6db66122d33278d7a4ea3.tar.bz2 |
Fixes java/PR9861
From-SVN: r108374
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 6 | ||||
-rw-r--r-- | include/demangle.h | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 575bcf7..71fe425 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-10-31 Mark Kettenis <kettenis@gnu.org> * floatformat.h (enum floatformat_byteorders): Add diff --git a/include/demangle.h b/include/demangle.h index 304a4c4..af29467 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) |