about summary refs log tree commit diff
path: root/src/bootstrap/bin
diff options
context:
space:
mode:
authorFabio B <f-bro@mailbox.org>2018-04-13 09:43:10 +0200
committerFabio B <f-bro@mailbox.org>2018-04-13 09:43:10 +0200
commit35087fcb89d8d6ba8e9490e9aadeaf6987c55e34 (patch)
treec16dbeaefedaf2c9ebcb5853a0877ba5be1d6a8b /src/bootstrap/bin
parent252a459d373f40512ed9137d59e4b6bea5d6aaee (diff)
downloadrust-35087fcb89d8d6ba8e9490e9aadeaf6987c55e34.tar.gz
rust-35087fcb89d8d6ba8e9490e9aadeaf6987c55e34.zip
Remove -Z miri debugging option
Diffstat (limited to 'src/bootstrap/bin')
-rw-r--r--src/bootstrap/bin/rustc.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/bootstrap/bin/rustc.rs b/src/bootstrap/bin/rustc.rs
index 3dd9b684059..b6ae824c376 100644
--- a/src/bootstrap/bin/rustc.rs
+++ b/src/bootstrap/bin/rustc.rs
@@ -247,9 +247,6 @@ fn main() {
         // When running miri tests, we need to generate MIR for all libraries
         if env::var("TEST_MIRI").ok().map_or(false, |val| val == "true") {
             cmd.arg("-Zalways-encode-mir");
-            if stage != "0" {
-                cmd.arg("-Zmiri");
-            }
             cmd.arg("-Zmir-emit-validate=1");
         }