mirror of
https://github.com/open-goal/jak-project
synced 2026-08-20 06:16:35 -04:00
Support 128-bit variables (#336)
* wip 128 bit support * add a few more files to offline test
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user