Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
RCoeurjoly committed May 23, 2024
1 parent 34bdefd commit eb5a97b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion passes/cmds/Makefile.inc
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ OBJS += passes/cmds/xprop.o
OBJS += passes/cmds/dft_tag.o
OBJS += passes/cmds/future.o
OBJS += passes/cmds/example_dt.o
OBJS += passes/cmds/netlist_from_compute_graph.o
OBJS += passes/cmds/netlist_to_compute_graph.o
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ struct ExampleWorker
}
};

struct NetlistFromComputeGraphPass : public Pass
struct ComputeGraphFromNetlistPass : public Pass

Check failure on line 39 in passes/cmds/netlist_to_compute_graph.cc

View workflow job for this annotation

GitHub Actions / test-compile (ubuntu-latest, gcc-10)

no matching function for call to ‘Yosys::Pass::Pass()’

Check failure on line 39 in passes/cmds/netlist_to_compute_graph.cc

View workflow job for this annotation

GitHub Actions / test-compile (ubuntu-latest, gcc)

no matching function for call to ‘Yosys::Pass::Pass()’
{
NetlistFromComputeGraphPass() : Pass("netlist_from_compute_graph", "drivertools example") {}
NetlistFromComputeGraphPass() : Pass("compute_graph_netlist_from", "drivertools example") {}

Check failure on line 41 in passes/cmds/netlist_to_compute_graph.cc

View workflow job for this annotation

GitHub Actions / test-compile (ubuntu-latest, gcc-10)

ISO C++ forbids declaration of ‘NetlistFromComputeGraphPass’ with no type [-fpermissive]

Check failure on line 41 in passes/cmds/netlist_to_compute_graph.cc

View workflow job for this annotation

GitHub Actions / test-compile (ubuntu-latest, gcc-10)

only constructors take member initializers

Check failure on line 41 in passes/cmds/netlist_to_compute_graph.cc

View workflow job for this annotation

GitHub Actions / test-compile (macos-13, clang)

a type specifier is required for all declarations

Check failure on line 41 in passes/cmds/netlist_to_compute_graph.cc

View workflow job for this annotation

GitHub Actions / test-compile (macos-13, clang)

only constructors take base initializers

Check failure on line 41 in passes/cmds/netlist_to_compute_graph.cc

View workflow job for this annotation

GitHub Actions / test-compile (ubuntu-latest, gcc)

ISO C++ forbids declaration of ‘NetlistFromComputeGraphPass’ with no type [-fpermissive]

Check failure on line 41 in passes/cmds/netlist_to_compute_graph.cc

View workflow job for this annotation

GitHub Actions / test-compile (ubuntu-latest, gcc)

only constructors take member initializers

Check failure on line 41 in passes/cmds/netlist_to_compute_graph.cc

View workflow job for this annotation

GitHub Actions / test-compile (ubuntu-latest, clang)

a type specifier is required for all declarations

Check failure on line 41 in passes/cmds/netlist_to_compute_graph.cc

View workflow job for this annotation

GitHub Actions / test-compile (ubuntu-latest, clang)

only constructors take base initializers

Check failure on line 41 in passes/cmds/netlist_to_compute_graph.cc

View workflow job for this annotation

GitHub Actions / test-compile (ubuntu-22.04, clang-11)

C++ requires a type specifier for all declarations

Check failure on line 41 in passes/cmds/netlist_to_compute_graph.cc

View workflow job for this annotation

GitHub Actions / test-compile (ubuntu-22.04, clang-11)

only constructors take base initializers

Check failure on line 41 in passes/cmds/netlist_to_compute_graph.cc

View workflow job for this annotation

GitHub Actions / test-compile (ubuntu-latest, clang-14)

C++ requires a type specifier for all declarations

Check failure on line 41 in passes/cmds/netlist_to_compute_graph.cc

View workflow job for this annotation

GitHub Actions / test-compile (ubuntu-latest, clang-14)

only constructors take base initializers

void help() override
{
Expand Down

0 comments on commit eb5a97b

Please sign in to comment.