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 24df372 commit 2ef73a8Copy full SHA for 2ef73a8
crates/wasmi/src/engine/executor/handler/state.rs
@@ -419,7 +419,7 @@ impl CallStack {
419
420
fn pop(&mut self) -> Option<(Ip, usize, Option<NonNull<InstanceEntity>>)> {
421
let Some(popped) = self.frames.pop() else {
422
- panic!("unexpected empty frame stack") // TODO: return `Result` instead of panicking
+ unsafe { unreachable_unchecked!("call stack must not be empty") }
423
};
424
let top = self.top()?;
425
let ip = top.ip;
0 commit comments