We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1209ec8 commit f300014Copy full SHA for f300014
usvm-ts/src/main/kotlin/org/usvm/machine/interpreter/TsInterpreter.kt
@@ -547,7 +547,7 @@ class TsInterpreter(
547
// TODO: handle the case when `lhv.array.type` is NOT an array.
548
// In this case, it could be created manually: `EtsArrayType(EtsUnknownType, 1)`.
549
val arrayType = if (isAllocatedConcreteHeapRef(instance)) {
550
- scope.calcOnState { (memory.typeStreamOf(instance).first()) }
+ scope.calcOnState { (memory.typeStreamOf(instance).first()) }
551
} else {
552
lhv.array.type
553
} as? EtsArrayType ?: error("Expected EtsArrayType, got: ${lhv.array.type}")
0 commit comments