From: Ian Lance Taylor Date: Tue, 18 Nov 2003 18:29:30 +0000 (+0000) Subject: test-demangle.c (main): Don't pass DMGL_VERBOSE to cplus_demangle. X-Git-Tag: releases/gcc-3.4.0~2237 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c4328d32dd310c8a980d1f62bfb961a8a5734009;p=thirdparty%2Fgcc.git test-demangle.c (main): Don't pass DMGL_VERBOSE to cplus_demangle. * testsuite/test-demangle.c (main): Don't pass DMGL_VERBOSE to cplus_demangle. From-SVN: r73709 --- diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 6f51efbff8c5..4043de4da21d 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,5 +1,8 @@ 2003-11-18 Ian Lance Taylor + * testsuite/test-demangle.c (main): Don't pass DMGL_VERBOSE to + cplus_demangle. + * testsuite/Makefile.in (test-demangle): Depend upon libiberty.a. 2003-10-31 Andreas Jaeger diff --git a/libiberty/testsuite/test-demangle.c b/libiberty/testsuite/test-demangle.c index 6e5d0b4b9731..ed28229ca344 100644 --- a/libiberty/testsuite/test-demangle.c +++ b/libiberty/testsuite/test-demangle.c @@ -146,7 +146,7 @@ main(argc, argv) cplus_demangle_set_style (style); result = cplus_demangle (input.data, - DMGL_PARAMS|DMGL_ANSI|DMGL_VERBOSE|DMGL_TYPES); + DMGL_PARAMS|DMGL_ANSI|DMGL_TYPES); if (result ? strcmp (result, expect.data)