未验证 提交 93ff8979 编写于 作者: M Mazdak Farrokhzad 提交者: GitHub

Rollup merge of #67773 - michalt:issue-37333-test, r=nikomatsakis

Add a test for #37333

The test checks that we reuse the CGU of a crate when the implementation
details of an `extern crate` have changed.
Signed-off-by: NMichal Terepeta <michal.terepeta@gmail.com>
#![allow(warnings)]
#![crate_name = "a"]
#![crate_type = "rlib"]
#[cfg(rpass1)]
#[inline(never)]
pub fn foo(b: u8) -> u32 {
b as u32
}
#[cfg(rpass2)]
#[inline(never)]
pub fn foo(b: u8) -> u32 {
(b + 42) as u32
}
pub fn bar(b: u8) -> u32 {
bar_impl(b) as u32
}
#[cfg(rpass1)]
#[inline(never)]
fn bar_impl(b: u8) -> u16 {
b as u16
}
#[cfg(rpass2)]
#[inline(never)]
fn bar_impl(b: u8) -> u32 {
(b + 42) as u32
}
// Test that we are able to reuse `main` despite the changes in the implementation of `foo` and
// `bar`.
// revisions: rpass1 rpass2
// aux-build: a.rs
// compile-flags: -Zquery-dep-graph
#![feature(rustc_attrs)]
#![crate_type = "bin"]
#![rustc_partition_reused(module = "main", cfg = "rpass2")]
extern crate a;
pub fn main() {
let vec: Vec<u8> = vec![0, 1, 2, 3];
for b in vec {
println!("{}", a::foo(b));
println!("{}", a::bar(b));
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册