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
When returning a symbolic array, I get the following exception with SymbolicListener
I checked the indicated line and it contained: ARETURN areturn = (ARETURN) insn; IntegerExpression returnAttr = (IntegerExpression) areturn.getReturnAttr(ti);
Shouldn't it be ARETURN areturn = (ARETURN) insn; ArrayExpression returnAttr = (ArrayExpression) areturn.getReturnAttr(ti); instead ?
The text was updated successfully, but these errors were encountered:
Good morning,
When returning a symbolic array, I get the following exception with SymbolicListener
I checked the indicated line and it contained:
ARETURN areturn = (ARETURN) insn; IntegerExpression returnAttr = (IntegerExpression) areturn.getReturnAttr(ti);
Shouldn't it be
ARETURN areturn = (ARETURN) insn; ArrayExpression returnAttr = (ArrayExpression) areturn.getReturnAttr(ti);
instead ?The text was updated successfully, but these errors were encountered: