From 67738d440d3516a99f9cdffb19c91540bfc66c8c Mon Sep 17 00:00:00 2001 From: Patrick LaFontaine <32135464+Pat-Lafon@users.noreply.github.com> Date: Tue, 7 May 2024 10:44:54 -0700 Subject: [PATCH] Remove _start --- bril-rs/brillvm/runtime/src/main.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/bril-rs/brillvm/runtime/src/main.rs b/bril-rs/brillvm/runtime/src/main.rs index 53333b0fe..60836aa59 100644 --- a/bril-rs/brillvm/runtime/src/main.rs +++ b/bril-rs/brillvm/runtime/src/main.rs @@ -72,11 +72,6 @@ pub unsafe extern "C" fn _bril_parse_float(arg: *const c_char) -> f64 { r_str.parse::().unwrap() } -#[no_mangle] -pub extern "C" fn _start() -> ! { - loop {} -} - #[cfg(not(test))] #[panic_handler] fn my_panic(_info: &core::panic::PanicInfo) -> ! {