Skip to content

Commit fd5def7

Browse files
committed
oops 2
1 parent 75e8481 commit fd5def7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

vpr/src/route/route_tree_type.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include "globals.h"
33

44
/* Construct a new RouteTreeNode.
5-
* Doesn't add it to parent's child_nodes! You should do it manually */
5+
* Doesn't add the node to parent's child_nodes! (see add_child) */
66
RouteTreeNode::RouteTreeNode(RRNodeId _inode, RRSwitchId _parent_switch, vtr::optional<RouteTreeNode&> _parent, vtr::optional<RouteTree&> _root)
77
:inode(_inode),parent_switch(_parent_switch),parent(_parent),root(_root) {
88
auto& device_ctx = g_vpr_ctx.device();

vpr/test/test_post_verilog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ void do_vpr_flow(const char* input_unc_opt, const char* output_unc_opt) {
3232
bool flow_succeeded = vpr_flow(vpr_setup, arch);
3333

3434
free_routing_structs();
35-
vpr_free_all((const Netlist<>&)g_vpr_ctx.clustering().clb_nlist, arch, vpr_setup);
35+
vpr_free_all(arch, vpr_setup);
3636

3737
auto& atom_ctx = g_vpr_ctx.mutable_atom();
3838

0 commit comments

Comments
 (0)