@@ -496,11 +496,6 @@ pub struct MiriMachine<'tcx> {
496496 /// `None` means no `Instance` exported under the given name is found.
497497 pub ( crate ) exported_symbols_cache : FxHashMap < Symbol , Option < Instance < ' tcx > > > ,
498498
499- /// Whether to raise a panic in the context of the evaluated process when unsupported
500- /// functionality is encountered. If `false`, an error is propagated in the Miri application context
501- /// instead (default behavior)
502- pub ( crate ) panic_on_unsupported : bool ,
503-
504499 /// Equivalent setting as RUST_BACKTRACE on encountering an error.
505500 pub ( crate ) backtrace_style : BacktraceStyle ,
506501
@@ -667,7 +662,6 @@ impl<'tcx> MiriMachine<'tcx> {
667662 profiler,
668663 string_cache : Default :: default ( ) ,
669664 exported_symbols_cache : FxHashMap :: default ( ) ,
670- panic_on_unsupported : config. panic_on_unsupported ,
671665 backtrace_style : config. backtrace_style ,
672666 local_crates,
673667 extern_statics : FxHashMap :: default ( ) ,
@@ -807,7 +801,6 @@ impl VisitProvenance for MiriMachine<'_> {
807801 profiler : _,
808802 string_cache : _,
809803 exported_symbols_cache : _,
810- panic_on_unsupported : _,
811804 backtrace_style : _,
812805 local_crates : _,
813806 rng : _,
0 commit comments