Raymond Toy pushed to branch issue-242-c-call-char-result-wrong at cmucl / cmucl
Commits: 88d71368 by Raymond Toy at 2023-06-30T14:17:04-07:00 Change `signed short` to `short`
`short` is always signed.
- - - - -
1 changed file:
- tests/test-return.c
Changes:
===================================== tests/test-return.c ===================================== @@ -6,10 +6,10 @@ int_to_signed_char(int x) return (signed char) x; }
-signed short +short int_to_short(int x) { - return (signed short) x; + return (short) x; }
int
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/88d71368da29315d7b6a4577...