Skip to content

Commit

Permalink
adjustment to test_cuik.c
Browse files Browse the repository at this point in the history
  • Loading branch information
Ed94 committed Dec 17, 2024
1 parent 46e816d commit a7cb7b0
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions test/c_library/test_cuik.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,24 +20,26 @@ int main()
((gen_Macro){ txt("FOR_SUCC"), MT_Statement, MF_Functional })
));

gen_CodeBody h_passes = gen_parse_file("Cuik/tb/opt/passes.h\n");
gen_CodeBody h_passes = gen_parse_file("Cuik/tb/opt/passes.h");
for (gen_Code code = gen_iterator(CodeBody, h_passes, code)) switch (code->Type) {
case CT_Function_Fwd:
case CT_Function:
gen_log_fmt("%S:\t%S params: %S return type: %S\n"
gen_log_fmt("%S:\t%S RETURN_TYPE: %S PARAMS:%S\n"
, gen_codetype_to_str(code->Type)
, code->Name
, gen_strbuilder_to_str( gen_params_to_strbuilder( (gen_CodeParams) code->Params))
, gen_strbuilder_to_str( gen_typename_to_strbuilder((gen_CodeTypename) code->ReturnType))
, gen_strbuilder_to_str( gen_params_to_strbuilder( (gen_CodeParams) code->Params))
);
break;

case CT_Variable:
gen_log_fmt("%S:\t%S Type: %S\n", gen_codetype_to_str(code->Type), code->Name, code->ValueType);
gen_log_fmt("%S:\t%S Type:%S\n", gen_codetype_to_str(code->Type), code->Name, code->ValueType);
break;

case CT_Struct_Fwd:
case CT_Struct:
case CT_Typedef:
gen_log_fmt("%S:\t%S\n", gen_codetype_to_str(code->Type), code->Name);
gen_log_fmt("%S: %S\n", gen_codetype_to_str(code->Type), code->Name);
break;
}

Expand Down

0 comments on commit a7cb7b0

Please sign in to comment.