Remove assignment typo (#3429)

This commit is contained in:
Paulo Matos 2020-10-07 14:38:45 +02:00 committed by GitHub
parent 003ac9b338
commit 0834d28d75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3475,7 +3475,7 @@ ptr S_count_size_increments(ptr ls, IGEN generation) {
for (l = ls; l != Snil; l = Scdr(l)) { for (l = ls; l != Snil; l = Scdr(l)) {
ptr p = Scar(l); ptr p = Scar(l);
if (!IMMEDIATE(p)) { if (!IMMEDIATE(p)) {
seginfo *si = si = SegInfo(ptr_get_segment(p)); seginfo *si = SegInfo(ptr_get_segment(p));
if (!si->measured_mask) if (!si->measured_mask)
init_measure_mask(tgc, si); init_measure_mask(tgc, si);
@ -3493,7 +3493,7 @@ ptr S_count_size_increments(ptr ls, IGEN generation) {
measure_total = 0; measure_total = 0;
if (!IMMEDIATE(p)) { if (!IMMEDIATE(p)) {
seginfo *si = si = SegInfo(ptr_get_segment(p)); seginfo *si = SegInfo(ptr_get_segment(p));
measure_mask_unset(si->counting_mask, si, p); measure_mask_unset(si->counting_mask, si, p);
gc_measure_one(tgc, p); gc_measure_one(tgc, p);
} }
@ -3509,7 +3509,7 @@ ptr S_count_size_increments(ptr ls, IGEN generation) {
for (l = ls; l != Snil; l = Scdr(l)) { for (l = ls; l != Snil; l = Scdr(l)) {
ptr p = Scar(l); ptr p = Scar(l);
if (!IMMEDIATE(p)) { if (!IMMEDIATE(p)) {
seginfo *si = si = SegInfo(ptr_get_segment(p)); seginfo *si = SegInfo(ptr_get_segment(p));
si->counting_mask = NULL; si->counting_mask = NULL;
} }
} }