mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-13 06:29:11 +00:00
Make fixes, improvements, and chibicc python bindings
- python now mixes audio 10x faster - python octal notation is restored - chibicc now builds code 3x faster - chibicc now has help documentation - chibicc can now generate basic python bindings - linenoise now supports some paredit-like features See #141
This commit is contained in:
parent
28997f3acb
commit
7061c79c22
121 changed files with 5272 additions and 1928 deletions
2
third_party/chibicc/printast.c
vendored
2
third_party/chibicc/printast.c
vendored
|
@ -130,6 +130,8 @@ static void PrintType(FILE *f, int l, const char *s, Type *t) {
|
|||
PrintBool(f, l + 2, "is_flexible: ", t->is_flexible);
|
||||
PrintBool(f, l + 2, "is_packed: ", t->is_packed);
|
||||
PrintBool(f, l + 2, "is_aligned: ", t->is_aligned);
|
||||
PrintBool(f, l + 2, "is_const: ", t->is_const);
|
||||
PrintBool(f, l + 2, "is_static: ", t->is_static);
|
||||
PrintType(f, l + 2, "return_ty: ", t->return_ty);
|
||||
PrintType(f, l + 2, "params: ", t->params);
|
||||
PrintBool(f, l + 2, "is_variadic: ", t->is_variadic);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue