aboutsummaryrefslogtreecommitdiffstats
path: root/creole.c
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2023-02-12 20:39:03 +0000
committerGravatar Peter McGoron 2023-02-12 20:39:03 +0000
commite537d927a103e4990f82765eba1dbefabd332749 (patch)
tree1454a3fa97dba7a0f521c8b6881c8164b9cdb6a2 /creole.c
parentsyscall test (diff)
test all
Diffstat (limited to '')
-rw-r--r--creole.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/creole.c b/creole.c
index 30176c9..9c254d5 100644
--- a/creole.c
+++ b/creole.c
@@ -525,10 +525,10 @@ check_label(struct creole_env *env, creole_word label)
}
enum argument_signed {
- ALL_UNSIGNED = 0, // 0b00
- FIRST_SIGNED = 2, // 0b10
- SECOND_SIGNED = 1, // 0b01
- ALL_SIGNED = 3 // 0b11
+ ALL_UNSIGNED = 0, /* 0b00 */
+ FIRST_SIGNED = 2, /* 0b10 */
+ SECOND_SIGNED = 1, /* 0b01 */
+ ALL_SIGNED = 3 /* 0b11 */
};
static enum argument_signed check_sign_bits(unsigned flags1, unsigned flags2)