mirror of
https://github.com/chhylp123/hifiasm.git
synced 2026-09-25 03:38:11 +08:00
fixed missing read names
Overlapping not working yet (now confirmed)
This commit is contained in:
@@ -9,21 +9,12 @@
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
int i;
|
||||
void *flt_tab;
|
||||
ha_pt_t *idx;
|
||||
|
||||
init_opt(&asm_opt);
|
||||
|
||||
if (!CommandLine_process(argc, argv, &asm_opt)) return 1;
|
||||
|
||||
yak_reset_realtime();
|
||||
flt_tab = ha_ft_gen(&asm_opt, &R_INF);
|
||||
idx = ha_pt_gen(&asm_opt, flt_tab, 0, &R_INF);
|
||||
ha_pt_destroy(idx);
|
||||
ha_ft_destroy(flt_tab);
|
||||
if (0) {
|
||||
Correct_Reads(asm_opt.number_of_round);
|
||||
}
|
||||
ha_flt_tab = ha_ft_gen(&asm_opt, &R_INF);
|
||||
Correct_Reads(asm_opt.number_of_round);
|
||||
ha_ft_destroy(ha_flt_tab);
|
||||
destory_All_reads(&R_INF);
|
||||
destory_opt(&asm_opt);
|
||||
fprintf(stderr, "[M::%s] Version: %s\n", __func__, "dummy");
|
||||
|
||||
Reference in New Issue
Block a user