about summary refs log tree commit diff
path: root/src/test/incremental
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2019-04-02 14:53:57 -0700
committerJosh Stone <jistone@redhat.com>2019-08-25 09:47:50 -0700
commitd810e77f4ed7a76aaac71b6430b7bfb049b3649c (patch)
tree2888b60e431a47c466bc1f31e3a9ff147995fc1c /src/test/incremental
parent39412ca9695dbf965c69f6f673c0e49313d3f1fb (diff)
downloadrust-d810e77f4ed7a76aaac71b6430b7bfb049b3649c.tar.gz
rust-d810e77f4ed7a76aaac71b6430b7bfb049b3649c.zip
Revert "Allow a dirty MirBuilt for make_extern and make_method_extern"
This reverts commit b4a6f597934f16f89e27058a32a514c9572f148f.
Diffstat (limited to 'src/test/incremental')
-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 84680a52ff3..4515e36166e 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 882383e8419..538fd2c2920 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) { }
 }