aboutsummaryrefslogtreecommitdiff
path: root/libiberty
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@wasabisystems.com>2003-11-18 18:29:30 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2003-11-18 18:29:30 +0000
commitc4328d32dd310c8a980d1f62bfb961a8a5734009 (patch)
tree8468904d1d5bd9c7b5b2b91f9fc73184aaa27ad4 /libiberty
parenta9b571f241b621aff2aa8d89ef8ac8b177b08fc5 (diff)
downloadgcc-c4328d32dd310c8a980d1f62bfb961a8a5734009.zip
gcc-c4328d32dd310c8a980d1f62bfb961a8a5734009.tar.gz
gcc-c4328d32dd310c8a980d1f62bfb961a8a5734009.tar.bz2
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
Diffstat (limited to 'libiberty')
-rw-r--r--libiberty/ChangeLog3
-rw-r--r--libiberty/testsuite/test-demangle.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog
index 6f51efb..4043de4 100644
--- a/libiberty/ChangeLog
+++ b/libiberty/ChangeLog
@@ -1,5 +1,8 @@
2003-11-18 Ian Lance Taylor <ian@wasabisystems.com>
+ * 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 <aj@suse.de>
diff --git a/libiberty/testsuite/test-demangle.c b/libiberty/testsuite/test-demangle.c
index 6e5d0b4..ed28229 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)