mburkley / tms9900-gcc

gcc cross-compiler for TMS9900
GNU General Public License v3.0
11 stars 1 forks source link

tms9900_output_ascii should not close a string if it has already been closed due to max length reached #53

Closed mburkley closed 4 weeks ago

mburkley commented 6 months ago

In tms9900.c, a check should be made to ensure a string is still open:

`--- a/dev/gcc-4.4.0/gcc/config/tms9900/tms9900.c +++ b/dev/gcc-4.4.0/gcc/config/tms9900/tms9900.c @@ -720,7 +725,7 @@ void tms9900_output_ascii(FILE stream, const char ptr, int len) if (ISPRINT(c)) { / End TEXT statement /

mburkley commented 4 weeks ago

Fixed by https://github.com/mburkley/tms9900-gcc/pull/55