From: Jan Kratochvil Date: Mon, 13 Jun 2011 22:34:19 +0000 (+0000) Subject: cp-demangle.c (d_print_comp): Suppress d_print_mod for DMGL_RET_POSTFIX. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5fe8e1e9ab22e3da2b54ffaa53eac148676733a7;p=gcc.git cp-demangle.c (d_print_comp): Suppress d_print_mod for DMGL_RET_POSTFIX. libiberty/ * cp-demangle.c (d_print_comp) : Suppress d_print_mod for DMGL_RET_POSTFIX. * testsuite/demangle-expected: New testcases for --ret-postfix. From-SVN: r175001 --- diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 8e1fa521db6..0b8977c4e17 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,9 @@ +2011-06-13 Jan Kratochvil + + * cp-demangle.c (d_print_comp) : + Suppress d_print_mod for DMGL_RET_POSTFIX. + * testsuite/demangle-expected: New testcases for --ret-postfix. + 2011-06-13 Jan Kratochvil * cp-demangle.c (d_print_comp) : Do 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; diff --git a/libiberty/testsuite/demangle-expected b/libiberty/testsuite/demangle-expected index 63a3e24ba41..c94eb3c00f5 100644 --- a/libiberty/testsuite/demangle-expected +++ b/libiberty/testsuite/demangle-expected @@ -3968,6 +3968,15 @@ outer(short (*)(int), long) --format=gnu-v3 _Z6outer2IsEPFilES1_ int (*outer2(int (*)(long)))(long) +--format=gnu-v3 --ret-postfix +_Z5outerIsEcPFilE +outer(int (*)(long))char +--format=gnu-v3 --ret-postfix +_Z5outerPFsiEl +outer(short (*)(int), long) +--format=gnu-v3 --ret-postfix +_Z6outer2IsEPFilES1_ +outer2(int (*)(long))int (*)(long) --format=gnu-v3 --ret-drop _Z5outerIsEcPFilE outer(int (*)(long))