From 8d85860064296430f38e308b8e5615df03f0208b Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 7 Apr 2018 19:18:35 -0700 Subject: [PATCH] Remove no longer needed compiler_builtins The `compiler_builtins` crate is now automatically injected whenever the `core` crate is injected. --- test_suite/no_std/src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/test_suite/no_std/src/main.rs b/test_suite/no_std/src/main.rs index bcd5c480..d885e718 100644 --- a/test_suite/no_std/src/main.rs +++ b/test_suite/no_std/src/main.rs @@ -10,7 +10,6 @@ #![no_std] extern crate libc; -extern crate compiler_builtins; #[start] fn start(_argc: isize, _argv: *const *const u8) -> isize {