+2005-02-15 Jakub Jelinek <jakub@redhat.com>
+
+ PR libstdc++/19946
+ * testsuite/demangle/abi_examples/01.cc (main): Adjust for 2005-02-13
+ demangler change.
+ * testsuite/demangle/abi_examples/02.cc (main): Likewise.
+
2005-02-08 Mark Mitchell <mark@codesourcery.com>
* config/linker-map.gnu (GLIBCXX_3.4): Add _ZNSdC* and _ZNSdD*.
// 2003-02-26 Benjamin Kosnik <bkoz@redhat.com>
-// Copyright (C) 2003 Free Software Foundation, Inc.
+// Copyright (C) 2003, 2005 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
// extern "C" function
// extern "C" float f(void) { };
// T f
- verify_demangle("f", "error code = -2: invalid mangled name");
+ // f is ambiguous between "C" external name and internal built-in type
+ // name. The ambiguity is resolved to the built-in type name.
+ verify_demangle("f", "float");
return 0;
}
// 2003-02-26 Benjamin Kosnik <bkoz@redhat.com>
-// Copyright (C) 2003 Free Software Foundation, Inc.
+// Copyright (C) 2003, 2005 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
// or variable "f"
// int f;
// B f
- verify_demangle("f", "error code = -2: invalid mangled name");
+ // f is ambiguous between variable external name and internal built-in type
+ // name. The ambiguity is resolved to the built-in type name.
+ verify_demangle("f", "float");
return 0;
}