File tree 1 file changed +2
-4
lines changed
1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -6991,8 +6991,6 @@ struct assembler {
6991
6991
basicblock * a_entry ;
6992
6992
int a_offset ; /* offset into bytecode */
6993
6993
int a_except_table_off ; /* offset into exception table */
6994
- int a_prevlineno ; /* lineno of last emitted line in line table */
6995
- int a_prev_end_lineno ; /* end_lineno of last emitted line in line table */
6996
6994
int a_lineno ; /* lineno of last emitted instruction */
6997
6995
int a_end_lineno ; /* end_lineno of last emitted instruction */
6998
6996
int a_lineno_start ; /* bytecode start offset of current lineno */
@@ -7104,8 +7102,8 @@ static int
7104
7102
assemble_init (struct assembler * a , int nblocks , int firstlineno )
7105
7103
{
7106
7104
memset (a , 0 , sizeof (struct assembler ));
7107
- a -> a_prevlineno = a -> a_lineno = firstlineno ;
7108
- a -> a_prev_end_lineno = a -> a_end_lineno = firstlineno ;
7105
+ a -> a_lineno = firstlineno ;
7106
+ a -> a_end_lineno = firstlineno ;
7109
7107
a -> a_linetable = NULL ;
7110
7108
a -> a_location_off = 0 ;
7111
7109
a -> a_except_table = NULL ;
You can’t perform that action at this time.
0 commit comments