Skip to content

Commit

Permalink
Push Update 29/04/2022, 23:29:16
Browse files Browse the repository at this point in the history
  • Loading branch information
krzem5 committed Apr 29, 2022
1 parent b73e1da commit f495895
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sll/io/write.c
Original file line number Diff line number Diff line change
Expand Up @@ -233,10 +233,10 @@ __SLL_EXTERNAL void sll_write_assembly(sll_file_t* wf,const sll_assembly_data_t*
break;
case SLL_ASSEMBLY_INSTRUCTION_TYPE_PUSH_FLOAT:
case SLL_ASSEMBLY_INSTRUCTION_TYPE_RET_FLOAT:
sll_file_write(wf,&(ai->dt.f),sizeof(sll_float_t),NULL);
WRITE_FIELD(ai->dt.f,wf);
break;
case SLL_ASSEMBLY_INSTRUCTION_TYPE_PUSH_COMPLEX:
sll_file_write(wf,&(ai->dt.d),sizeof(sll_complex_t),NULL);
WRITE_FIELD(ai->dt.d,wf);
break;
case SLL_ASSEMBLY_INSTRUCTION_TYPE_PUSH_CHAR:
case SLL_ASSEMBLY_INSTRUCTION_TYPE_PRINT_CHAR:
Expand Down

0 comments on commit f495895

Please sign in to comment.