C++: Fix type in dataflow test comment

This commit is contained in:
Jeroen Ketema
2022-11-15 17:18:08 +01:00
parent 68e513c6a4
commit 98176007d8

View File

@@ -87,7 +87,7 @@ Top *identity(Top *top) {
void callIdentityFunctions(Top *top, Bottom *bottom) {
identity(bottom)->isSink(source()); // $ MISSING: ast,ir
identity(top)->isSink(source()); // now flow
identity(top)->isSink(source()); // no flow
}
using SinkFunctionType = void (*)(int);