From be03abe8c7dc65fca956fec4507b11f0184ac547 Mon Sep 17 00:00:00 2001 From: jkratoch Date: Mon, 13 Jun 2011 22:34:19 +0000 Subject: libiberty/ * cp-demangle.c (d_print_comp) : Suppress d_print_mod for DMGL_RET_POSTFIX. * testsuite/demangle-expected: New testcases for --ret-postfix. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@175001 138bc75d-0d04-0410-961f-82ee72b054a4 --- libiberty/cp-demangle.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'libiberty/cp-demangle.c') diff --git a/libiberty/cp-demangle.c b/libiberty/cp-demangle.c index da6d7979f2c..3fc52660153 100644 --- a/libiberty/cp-demangle.c +++ b/libiberty/cp-demangle.c @@ -3922,7 +3922,10 @@ d_print_comp (struct d_print_info *dpi, int options, dc, dpi->modifiers); /* Print return type if present */ - if (d_left (dc) != NULL && (options & DMGL_RET_DROP) == 0) + if (d_left (dc) != NULL && (options & DMGL_RET_POSTFIX) != 0) + d_print_comp (dpi, options & ~(DMGL_RET_POSTFIX | DMGL_RET_DROP), + d_left (dc)); + else if (d_left (dc) != NULL && (options & DMGL_RET_DROP) == 0) { struct d_print_mod dpm; -- cgit v1.2.1