We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f8ad11 commit 21999e2Copy full SHA for 21999e2
chisel/src/main.rs
@@ -262,9 +262,18 @@ fn execute_module(context: &ModuleContext, module: &mut Module) -> bool {
262
Err("deployer: Invalid preset")
263
}
264
265
- "repack" => translate_module(module, &Repack::new()),
266
- "snip" => translate_module(module, &Snip::new()),
267
- "dropnames" => translate_module(module, &DropSection::NamesSection),
+ "repack" => {
+ is_translator = true;
+ translate_module(module, &Repack::new())
268
+ }
269
+ "snip" => {
270
271
+ translate_module(module, &Snip::new())
272
273
+ "dropnames" => {
274
275
+ translate_module(module, &DropSection::NamesSection)
276
277
_ => Err("Module Not Found"),
278
};
279
0 commit comments