From 980e9482390c9d0cf669d40337297ca18ae7af29 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 7 Nov 2022 11:28:17 -0600 Subject: [PATCH] Slim down temporary trampoline objects (#5212) I noticed this in the backtrace of something that timed out on oss-fuzz and there's no need to include this information in trampolines, so this removes the extra sections from being generated. --- crates/wasmtime/src/trampoline/func.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/wasmtime/src/trampoline/func.rs b/crates/wasmtime/src/trampoline/func.rs index 9de79001a4f0..8799cf85e479 100644 --- a/crates/wasmtime/src/trampoline/func.rs +++ b/crates/wasmtime/src/trampoline/func.rs @@ -120,7 +120,6 @@ where stub_fn:: as usize, &mut obj, )?; - engine.append_compiler_info(&mut obj); engine.append_bti(&mut obj); let obj = wasmtime_jit::ObjectBuilder::new(obj, &engine.config().tunables).finish()?;