Extract side effects into their own struct.

This commit is contained in:
chriseth
2019-08-14 15:06:10 +02:00
parent d5744b3c1c
commit 7d30fbdef0
8 changed files with 136 additions and 107 deletions
+1 -1
View File
@@ -565,7 +565,7 @@ BOOST_AUTO_TEST_CASE(builtins_analysis)
{
return _name == "builtin"_yulstring ? &f : nullptr;
}
BuiltinFunction f{"builtin"_yulstring, vector<Type>(2), vector<Type>(3), false, false};
BuiltinFunction f{"builtin"_yulstring, vector<Type>(2), vector<Type>(3), {}};
};
SimpleDialect dialect;