aboutsummaryrefslogtreecommitdiff
path: root/src/parse.c
diff options
context:
space:
mode:
authorMarvin Borner2023-05-21 23:24:53 +0200
committerMarvin Borner2023-05-21 23:24:53 +0200
commitd1443cb239ce306fcca9bfc67c4b162a0da9b917 (patch)
tree1422899a074d9d1bb0961b807b15a474f37ac6b0 /src/parse.c
parent1c9a2f192dad4847fb0205fa33d4caa17f7e53a8 (diff)
Fixed BIT_AT implementation
Diffstat (limited to 'src/parse.c')
-rw-r--r--src/parse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parse.c b/src/parse.c
index cf873c6..5f00ffa 100644
--- a/src/parse.c
+++ b/src/parse.c
@@ -43,7 +43,7 @@ struct term *parse_blc(const char *term)
return rec_blc(&term);
}
-#define BIT_AT(i) (term[(i) / 8] & (1 << (7 - ((i) % 8))))
+#define BIT_AT(i) ((term[(i) / 8] & (1 << (7 - ((i) % 8)))) >> (7 - ((i) % 8)))
// parses bloc's bit-encoded blc
// 00M -> abstraction of M
@@ -79,7 +79,7 @@ static struct term *parse_bloc_bblc(const char *term, size_t *bit)
res = new_term(REF);
size_t index = 0;
for (int i = 0; i < sel; i++) {
- index |= (BIT_AT(*bit) >> (7 - (*bit % 8))) << i;
+ index |= BIT_AT(*bit) << i;
(*bit) += 1;
}
res->u.ref.index = index;