Skip to content

Commit 217ea27

Browse files
committed
add initial version of functional smtlib backend
1 parent cbb49d4 commit 217ea27

File tree

4 files changed

+547
-5
lines changed

4 files changed

+547
-5
lines changed

backends/functional/Makefile.inc

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
OBJS += backends/functional/cxx.o
2+
OBJS += backends/functional/smtlib.o

backends/functional/cxx.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -214,10 +214,10 @@ class CxxComputeGraphFactory {
214214
pending.set_function(CxxFunction(ID($$buf), pending.function().width));
215215
pending.append_arg(node);
216216
}
217-
void declare_output(T node, IdString name) {
217+
void declare_output(T node, IdString name, int) {
218218
node.assign_key(name);
219219
}
220-
void declare_state(T node, IdString name) {
220+
void declare_state(T node, IdString name, int) {
221221
node.assign_key(name);
222222
}
223223
void suggest_name(T node, IdString name) {

0 commit comments

Comments
 (0)