about summary refs log tree commit diff
path: root/tvix/eval/src/vm.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/eval/src/vm.rs')
-rw-r--r--tvix/eval/src/vm.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/tvix/eval/src/vm.rs b/tvix/eval/src/vm.rs
index 52de99f490..252635de56 100644
--- a/tvix/eval/src/vm.rs
+++ b/tvix/eval/src/vm.rs
@@ -836,10 +836,7 @@ impl<'o> VM<'o> {
 
             // If any of these internal values are encountered here a
             // critical error has happened (likely a compiler bug).
-            Value::AttrNotFound
-            | Value::DynamicUpvalueMissing(_)
-            | Value::Blueprint(_)
-            | Value::DeferredUpvalue(_) => {
+            Value::AttrNotFound | Value::Blueprint(_) | Value::DeferredUpvalue(_) => {
                 panic!("tvix bug: internal value left on stack: {:?}", value)
             }