Skip to content

Commit 0f18a8c

Browse files
committed
Rebase fix
1 parent 59393c2 commit 0f18a8c

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

usvm-ts/src/main/kotlin/org/usvm/machine/expr/TsExpressions.kt

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -100,14 +100,3 @@ fun UExpr<*>.extractInt(): Int {
100100
}
101101
error("Cannot extract Int from $this")
102102
}
103-
104-
/**
105-
* Extracts an integer value from [this] expression if possible.
106-
* Otherwise, throws an error.
107-
*/
108-
fun UExpr<*>.extractInt(): Int {
109-
if (this@extractInt is KBitVec32Value) {
110-
return intValue
111-
}
112-
error("Cannot extract Int from $this")
113-
}

0 commit comments

Comments
 (0)