mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 10:35:12 +08:00
merge from gcc
This commit is contained in:
parent
2072249c02
commit
ae53364610
@ -1,3 +1,9 @@
|
||||
2001-12-12 Craig Rodrigues <rodrigc@gcc.gnu.org>
|
||||
|
||||
PR other/2719
|
||||
* cplus-dem.c (consume_count): Treat negative count as an error.
|
||||
* testsuite/demangle-expected: Added testcase.
|
||||
|
||||
Tue Dec 11 07:08:57 2001 Douglas B. Rupp <rupp@gnat.com>
|
||||
|
||||
* configure.in: Hardcode that vfork works on VMS host.
|
||||
|
@ -574,6 +574,9 @@ consume_count (type)
|
||||
(*type)++;
|
||||
}
|
||||
|
||||
if (count < 0)
|
||||
count = -1;
|
||||
|
||||
return (count);
|
||||
}
|
||||
|
||||
|
@ -2586,3 +2586,7 @@ JArray.t(JArray[])
|
||||
--format=java
|
||||
_ZN4Prim1iEibcdfwPN4java4lang6StringEsx
|
||||
Prim.i(int, boolean, byte, double, float, char, java.lang.String, short, long)
|
||||
#
|
||||
--format=hp
|
||||
_Utf58_0_1__1_2147483647__2147483648
|
||||
_Utf58_0_1__1_2147483647__2147483648
|
||||
|
Loading…
Reference in New Issue
Block a user