mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-30 04:10:44 -08:00
Add a name mangler to the lisp runtime. Use this mangler in the compiler to
optimize access to symbols and functions which are defined in the C runtime.
This commit is contained in:
parent
0dc4df6002
commit
f2da18a591
27 changed files with 783 additions and 709 deletions
|
|
@ -286,6 +286,8 @@ read_name(int is_symbol)
|
|||
poolp--;
|
||||
if (l > 2 && oneC && poolp[-1] == 'P')
|
||||
poolp--;
|
||||
if (poolp[-1] == '_')
|
||||
poolp[-1] = 'M';
|
||||
if (colon == NULL) {
|
||||
char buf[256];
|
||||
poolp[0] = buf[0] = '\0';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue