From 7d0e143224edb5b680fa8b6d0dd40bf0c27b9d6b Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Mon, 27 Jan 2025 20:36:41 +0100 Subject: [PATCH] Remove debug code. --- src/compiler/llvm_codegen_stmt.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/compiler/llvm_codegen_stmt.c b/src/compiler/llvm_codegen_stmt.c index 6aaba2adc..0ec2045ca 100644 --- a/src/compiler/llvm_codegen_stmt.c +++ b/src/compiler/llvm_codegen_stmt.c @@ -847,7 +847,6 @@ static void llvm_emit_switch_jump_table(GenContext *c, for (unsigned i = 0; i < case_count; i++) { Ast *case_ast = cases[i]; - printf("Block %p\n", case_ast->case_stmt.backend_block); if (case_ast->ast_kind == AST_DEFAULT_STMT) { if (!case_ast->case_stmt.body) continue;