diff options
| author | John Kåre Alsaker <john.kare.alsaker@gmail.com> | 2019-02-08 04:30:27 +0100 |
|---|---|---|
| committer | John Kåre Alsaker <john.kare.alsaker@gmail.com> | 2019-02-08 07:25:32 +0100 |
| commit | b4a6f597934f16f89e27058a32a514c9572f148f (patch) | |
| tree | 4e15bbe4ae34e0b91fbbb6fb8dac0415d218fa13 /src/test/incremental | |
| parent | a0f02cdba0050bba5a963dc14643d6ca7b7cd396 (diff) | |
| download | rust-b4a6f597934f16f89e27058a32a514c9572f148f.tar.gz rust-b4a6f597934f16f89e27058a32a514c9572f148f.zip | |
Allow a dirty MirBuilt for make_extern and make_method_extern
Diffstat (limited to 'src/test/incremental')
| -rw-r--r-- | src/test/incremental/hashes/function_interfaces.rs | 2 | ||||
| -rw-r--r-- | src/test/incremental/hashes/inherent_impls.rs | 2 |
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 8a0af2b0044..4330b0025a2 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, TypeckTables, FnSignature")] +#[rustc_clean(cfg = "cfail2", except = "Hir, HirBody, MirBuilt, TypeckTables, FnSignature")] #[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 3abc6c4d2e2..d1574aee9a9 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,FnSignature,TypeckTables")] + #[rustc_clean(cfg="cfail2", except="Hir,HirBody,MirBuilt,FnSignature,TypeckTables")] #[rustc_clean(cfg="cfail3")] pub extern fn make_method_extern(&self) { } } |
