Raymond Toy pushed to branch master at cmucl / cmucl
Commits: 83df8fec by Raymond Toy at 2024-04-19T12:01:18-07:00 Use snapshot-2024-04 to run the CI
Snapshots have been uploaded so use them for running the CI.
- - - - - 1abdcb32 by Raymond Toy at 2024-04-19T15:08:49-07:00 Remove // comment
According to [fc0bd2a6f0] this change was supposed to be removed but never was. Let's do it now. This was also the only place where we used C++ comment-style.
- - - - -
2 changed files:
- .gitlab-ci.yml - src/lisp/gencgc.c
Changes:
===================================== .gitlab-ci.yml ===================================== @@ -1,6 +1,6 @@ variables: - download_url: "https://common-lisp.net/project/cmucl/downloads/snapshots/2023/08" - version: "xoroshiro-assembly-x86" + download_url: "https://common-lisp.net/project/cmucl/downloads/snapshots/2024/04" + version: "2024-04-x86" bootstrap: ""
===================================== src/lisp/gencgc.c ===================================== @@ -4325,7 +4325,7 @@ u32_vector(lispobj obj, unsigned *length) static inline void free_hash_entry(struct hash_table *hash_table, int hash_index, int kv_index) { - unsigned length = UINT_MAX; // to compare to + unsigned length = UINT_MAX; unsigned *index_vector = u32_vector(hash_table->index_vector, &length); unsigned *next_vector = u32_vector(hash_table->next_vector, 0); int free_p = 1;
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/a33e75aed5ec46cd2ec116c...