File tree 2 files changed +3
-9
lines changed 2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -338,9 +338,6 @@ static const t_metadata_dict *get_fasm_type(const t_pb_graph_node* pb_graph_node
338
338
}
339
339
340
340
const LutOutputDefinition* FasmWriterVisitor::find_lut (const t_pb_graph_node* pb_graph_node) {
341
- const t_pb_graph_node* orig_pb_graph_node = pb_graph_node;
342
- (void )orig_pb_graph_node;
343
-
344
341
while (pb_graph_node != nullptr ) {
345
342
VTR_ASSERT (pb_graph_node->pb_type != nullptr );
346
343
@@ -413,9 +410,6 @@ const LutOutputDefinition* FasmWriterVisitor::find_lut(const t_pb_graph_node* pb
413
410
}
414
411
415
412
static const t_pb_route *find_pb_route (const t_pb* pb) {
416
- const t_pb* orig_pb = pb;
417
- (void )orig_pb;
418
-
419
413
while (pb != nullptr ) {
420
414
if (pb->pb_route != nullptr ) {
421
415
return pb->pb_route ;
Original file line number Diff line number Diff line change @@ -48,9 +48,9 @@ static bool write_fasm() {
48
48
std::string fasm_filename = atom_ctx.nlist .netlist_name () + " .fasm" ;
49
49
vtr::printf (" Writing Implementation FASM: %s\n " , fasm_filename.c_str ());
50
50
std::ofstream fasm_os (fasm_filename);
51
- fasm::FasmWriterVisitor visitor2 (fasm_os);
52
- NetlistWalker nl_walker2 (visitor2 );
53
- nl_walker2 .walk ();
51
+ fasm::FasmWriterVisitor visitor (fasm_os);
52
+ NetlistWalker nl_walker (visitor );
53
+ nl_walker .walk ();
54
54
55
55
return true ;
56
56
}
You can’t perform that action at this time.
0 commit comments