Skip to content

Commit c215684

Browse files
committed
fix: the empty line cleanup
1 parent 13b56a4 commit c215684

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/parser.c

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1752,7 +1752,6 @@ void handle_sizeof_operator(block_t *parent, basic_block_t **bb)
17521752
add_insn(parent, *bb, OP_load_constant, vd, NULL, NULL, 0, NULL);
17531753
}
17541754

1755-
17561755
void read_expr_operand(block_t *parent, basic_block_t **bb)
17571756
{
17581757
var_t *vd, *rs1;
@@ -2395,8 +2394,6 @@ void emit_struct_brace_initializer(block_t *parent,
23952394
lex_expect(T_close_curly);
23962395
}
23972396

2398-
2399-
24002397
/* Helper function to calculate element size for pointer operations */
24012398
int get_pointer_element_size(var_t *ptr_var)
24022399
{
@@ -4441,9 +4438,6 @@ basic_block_t *read_body_statement(block_t *parent, basic_block_t *bb)
44414438
add_insn(parent, bb, OP_write, NULL, dst_word_addr,
44424439
word_val, 4, NULL);
44434440
}
4444-
4445-
4446-
44474441
} else if (expr_result && expr_result->array_size > 0 &&
44484442
!var->ptr_level && var->array_size == 0 &&
44494443
var->type && var->type->base_type == TYPE_int &&

0 commit comments

Comments
 (0)