about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTshepang Mbambo <tshepang@gmail.com>2022-11-25 16:28:18 +0200
committerTshepang Mbambo <tshepang@gmail.com>2022-11-25 16:28:18 +0200
commitb21674f3bdca0083e7802842d282f64ee30080fb (patch)
treefe0b150540f96da804a39cc347b56ea8dff40772
parentc6ea362571bd7f7bc0d36b2aa61b44e183a2d841 (diff)
downloadrust-b21674f3bdca0083e7802842d282f64ee30080fb.tar.gz
rust-b21674f3bdca0083e7802842d282f64ee30080fb.zip
remove unused code
-rw-r--r--src/bootstrap/bin/rustc.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/bootstrap/bin/rustc.rs b/src/bootstrap/bin/rustc.rs
index 76a3e5f08b1..1d526022812 100644
--- a/src/bootstrap/bin/rustc.rs
+++ b/src/bootstrap/bin/rustc.rs
@@ -97,9 +97,7 @@ fn main() {
         // This... is a bit of a hack how we detect this. Ideally this
         // information should be encoded in the crate I guess? Would likely
         // require an RFC amendment to RFC 1513, however.
-        if crate_name == Some("panic_abort")
-            || crate_name == Some("compiler_builtins") && stage != "0"
-        {
+        if crate_name == Some("panic_abort") {
             cmd.arg("-C").arg("panic=abort");
         }