Separate compiler warning fixes

This commit is contained in:
Justin Ethier 2021-07-22 17:24:30 -04:00
parent 48a7958c33
commit 7eee273dde

View file

@ -12,6 +12,9 @@ Bug Fixes
- Fixed `read-line` to prevent data loss when used in conjunction with other I/O functions (such as `read-char`) to read data from the same port. This was because the previous version of `read-line` used a different internal buffer than our other I/O functions.
- Properly handle vectors literals at the top level of compiled code. Previously this could lead to segmentation faults (!!) at runtime.
- Fixed a bug in `make-list` that consumed all available memory when passing a negative list length.
Bug Fixes for Compiler Warnings
- Eliminate clang compiler warnings referencing `EOF` when building the runtime.
- Updated runtime so the C compiler will no longer generate warnings regarding the string comparisons in `Cyc_st_add`. Previously this could result in these warnings being spammed to the console when compiling code using Cyclone.
- Properly escape question marks within strings in generated C code to avoid trigraphs.