make csc optimisation optional

This commit is contained in:
Miodrag Milanovic 2024-09-12 08:42:15 +02:00
parent 1723156027
commit b384ce3205

View File

@ -2376,13 +2376,14 @@ void NgUltraImpl::postPlace()
}
remove_constants();
const ArchArgs &args = ctx->args;
NgUltraPacker packer(ctx, this);
log_break();
log_info("Running post-placement ...\n");
packer.duplicate_gck();
packer.insert_bypass_gck();
packer.insert_csc();
if (!args.options.count("no-csc-insertion"))
packer.insert_csc();
log_break();
ctx->assignArchInfo();
}