aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/codegen.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/codegen.c')
-rw-r--r--src/codegen.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/codegen.c b/src/codegen.c
index d66574f..9aa9a77 100644
--- a/src/codegen.c
+++ b/src/codegen.c
@@ -180,8 +180,12 @@ static void codegen_binary_expr(CodeGen* g, AstNode* ast, GenMode gen_mode) {
fprintf(g->out, " cqo\n");
fprintf(g->out, " idiv rdi\n");
fprintf(g->out, " mov rax, rdx\n");
+ } else if (ast->node_op == TokenKind_and) {
+ fprintf(g->out, " and rax, rdi\n");
} else if (ast->node_op == TokenKind_or) {
fprintf(g->out, " or rax, rdi\n");
+ } else if (ast->node_op == TokenKind_xor) {
+ fprintf(g->out, " xor rax, rdi\n");
} else if (ast->node_op == TokenKind_lshift) {
fprintf(g->out, " mov rcx, rdi\n");
fprintf(g->out, " shl rax, cl\n");