You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you don't specify a limiting function (either a "string" for a built-in or an analog function identifier), then openvaf will crash when compiling the module.
The problem is this line in openvaf/hir_ty/src/inference.rs:
infere_args = &args[0..2];
and then later:
if let Some(Ty::UserFunction(func)) = self.result.expr_types.get(args[1]).cloned() {
The text was updated successfully, but these errors were encountered:
gjcoram
added a commit
to gjcoram/OpenVAF
that referenced
this issue
Jun 22, 2024
If you don't specify a limiting function (either a "string" for a built-in or an analog function identifier), then openvaf will crash when compiling the module.
The problem is this line in openvaf/hir_ty/src/inference.rs:
infere_args = &args[0..2];
and then later:
if let Some(Ty::UserFunction(func)) = self.result.expr_types.get(args[1]).cloned() {
The text was updated successfully, but these errors were encountered: