Support 128-bit variables (#336)

* wip 128 bit support

* add a few more files to offline test
This commit is contained in:
water111
2021-03-25 16:02:48 -04:00
committed by GitHub
parent 99683c0dac
commit 7fac11ddf5
29 changed files with 509 additions and 213 deletions
+6
View File
@@ -324,6 +324,9 @@ FormElement* StoreOp::get_as_form(FormPool& pool, const Env& env) const {
case 8:
cast_type = "int64";
break;
case 16:
cast_type = "int128";
break;
default:
assert(false);
}
@@ -486,6 +489,9 @@ FormElement* LoadVarOp::get_as_form(FormPool& pool, const Env& env) const {
case 8:
cast_type = "int64";
break;
case 16:
cast_type = "int128";
break;
default:
assert(false);
}