mirrored from git://gcc.gnu.org/git/gcc.git
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
demangle.h (rust_is_mangled): Move to libiberty/rust-demangle.h.
include/ * demangle.h (rust_is_mangled): Move to libiberty/rust-demangle.h. (rust_demangle_sym): Move to libiberty/rust-demangle.h. libiberty/ * cplus-dem.c: Include rust-demangle.h. * rust-demangle.c: Include rust-demangle.h. * rust-demangle.h: New file. From-SVN: r273573
- Loading branch information
1 parent
2499017
commit 979526c
Showing
6 changed files
with
58 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
2019-07-18 Eduard-Mihai Burtescu <[email protected]> | ||
|
||
* demangle.h (rust_is_mangled): Move to libiberty/rust-demangle.h. | ||
(rust_demangle_sym): Move to libiberty/rust-demangle.h. | ||
|
||
2019-06-18 Thomas Schwinge <[email protected]> | ||
|
||
* gomp-constants.h (enum gomp_map_kind): Fix description of | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
2019-07-18 Eduard-Mihai Burtescu <[email protected]> | ||
|
||
* cplus-dem.c: Include rust-demangle.h. | ||
* rust-demangle.c: Include rust-demangle.h. | ||
* rust-demangle.h: New file. | ||
|
||
2019-05-31 Michael Forney <[email protected]> | ||
|
||
* cp-demangle.c: Don't define CP_DYNAMIC_ARRAYS if __STDC_NO_VLA__ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* Internal demangler interface for the Rust programming language. | ||
Copyright (C) 2016-2019 Free Software Foundation, Inc. | ||
Written by David Tolnay ([email protected]). | ||
This file is part of the libiberty library. | ||
Libiberty is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Library General Public | ||
License as published by the Free Software Foundation; either | ||
version 2 of the License, or (at your option) any later version. | ||
In addition to the permissions in the GNU Library General Public | ||
License, the Free Software Foundation gives you unlimited permission | ||
to link the compiled version of this file into combinations with other | ||
programs, and to distribute those combinations without any restriction | ||
coming from the use of this file. (The Library Public License | ||
restrictions do apply in other respects; for example, they cover | ||
modification of the file, and distribution when not linked into a | ||
combined executable.) | ||
Libiberty is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Library General Public License for more details. | ||
You should have received a copy of the GNU Library General Public | ||
License along with libiberty; see the file COPYING.LIB. | ||
If not, see <http://www.gnu.org/licenses/>. */ | ||
|
||
/* This file provides some definitions shared by cplus-dem.c and | ||
rust-demangle.c. It should not be included by any other files. */ | ||
|
||
/* Returns non-zero iff MANGLED is a rust mangled symbol. MANGLED must | ||
already have been demangled through cplus_demangle_v3. If this function | ||
returns non-zero then MANGLED can be demangled (in-place) using | ||
RUST_DEMANGLE_SYM. */ | ||
extern int | ||
rust_is_mangled (const char *mangled); | ||
|
||
/* Demangles SYM (in-place) if RUST_IS_MANGLED returned non-zero for SYM. | ||
If RUST_IS_MANGLED returned zero for SYM then RUST_DEMANGLE_SYM might | ||
replace characters that cannot be demangled with '?' and might truncate | ||
SYM. After calling RUST_DEMANGLE_SYM SYM might be shorter, but never | ||
larger. */ | ||
extern void | ||
rust_demangle_sym (char *sym); |