Raymond Toy pushed to branch master at cmucl / cmucl

Commits:

2 changed files:

Changes:

  • .gitlab-ci.yml
    1 1
     variables:
    
    2
    -  download_url: "https://common-lisp.net/project/cmucl/downloads/snapshots/2023/08"
    
    3
    -  version: "xoroshiro-assembly-x86"
    
    2
    +  download_url: "https://common-lisp.net/project/cmucl/downloads/snapshots/2024/04"
    
    3
    +  version: "2024-04-x86"
    
    4 4
       bootstrap: ""
    
    5 5
     
    
    6 6
     
    

  • src/lisp/gencgc.c
    ... ... @@ -4325,7 +4325,7 @@ u32_vector(lispobj obj, unsigned *length)
    4325 4325
     static inline void
    
    4326 4326
     free_hash_entry(struct hash_table *hash_table, int hash_index, int kv_index)
    
    4327 4327
     {
    
    4328
    -    unsigned length = UINT_MAX; // to compare to
    
    4328
    +    unsigned length = UINT_MAX;
    
    4329 4329
         unsigned *index_vector = u32_vector(hash_table->index_vector, &length);
    
    4330 4330
         unsigned *next_vector = u32_vector(hash_table->next_vector, 0);
    
    4331 4331
         int free_p = 1;