summary refs log tree commit diff
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2019-04-02 14:53:57 -0700
committerJosh Stone <jistone@redhat.com>2019-05-10 13:47:36 -0700
commit60414db0ca729309a3d5cfbe9b2cbcde10189e12 (patch)
tree20e2e3f5864f44249938ab5d8cb815382c3bed69
parent43aab4b49af0787dae480964d6303c04d38f35a0 (diff)
downloadrust-60414db0ca729309a3d5cfbe9b2cbcde10189e12.tar.gz
rust-60414db0ca729309a3d5cfbe9b2cbcde10189e12.zip
Revert "Allow a dirty MirBuilt for make_extern and make_method_extern"
This reverts commit b4a6f597934f16f89e27058a32a514c9572f148f.
-rw-r--r--src/test/incremental/hashes/function_interfaces.rs2
-rw-r--r--src/test/incremental/hashes/inherent_impls.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/incremental/hashes/function_interfaces.rs b/src/test/incremental/hashes/function_interfaces.rs
index 7850291fc56..45b52b74a0d 100644
--- a/src/test/incremental/hashes/function_interfaces.rs
+++ b/src/test/incremental/hashes/function_interfaces.rs
@@ -94,7 +94,7 @@ pub unsafe fn make_unsafe() {}
 pub fn make_extern() {}
 
 #[cfg(not(cfail1))]
-#[rustc_clean(cfg = "cfail2", except = "Hir, HirBody, mir_built, typeck_tables_of, fn_sig")]
+#[rustc_clean(cfg = "cfail2", except = "Hir, HirBody, typeck_tables_of, fn_sig")]
 #[rustc_clean(cfg = "cfail3")]
 pub extern "C" fn make_extern() {}
 
diff --git a/src/test/incremental/hashes/inherent_impls.rs b/src/test/incremental/hashes/inherent_impls.rs
index 268c37508a7..c72d3d0b9ec 100644
--- a/src/test/incremental/hashes/inherent_impls.rs
+++ b/src/test/incremental/hashes/inherent_impls.rs
@@ -263,7 +263,7 @@ impl Foo {
 #[rustc_clean(cfg="cfail2")]
 #[rustc_clean(cfg="cfail3")]
 impl Foo {
-    #[rustc_clean(cfg="cfail2", except="Hir,HirBody,mir_built,fn_sig,typeck_tables_of")]
+    #[rustc_clean(cfg="cfail2", except="Hir,HirBody,fn_sig,typeck_tables_of")]
     #[rustc_clean(cfg="cfail3")]
     pub extern fn make_method_extern(&self) { }
 }