forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#71258 - Mark-Simulacrum:beta-next, r=Mark-Sim…
…ulacrum [beta] backports This includes: * Do not reuse post LTO products when exports change rust-lang#71131 * macro_rules: `NtLifetime` cannot start with an identifier rust-lang#70768 * Update RELEASES.md for 1.43.0 rust-lang#70354 r? @ghost
- Loading branch information
Showing
7 changed files
with
285 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
src/test/incremental/thinlto/cgu_invalidated_when_export_added.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// revisions: cfail1 cfail2 | ||
// build-pass | ||
|
||
// rust-lang/rust#69798: | ||
// | ||
// This is analgous to cgu_invalidated_when_import_added, but it covers a | ||
// problem uncovered where a change to the *export* set caused a link failure | ||
// when reusing post-LTO optimized object code. | ||
|
||
pub struct Foo {} | ||
impl Drop for Foo { | ||
fn drop(&mut self) { | ||
println!("Dropping Foo"); | ||
} | ||
} | ||
#[no_mangle] | ||
pub extern "C" fn run() { | ||
thread_local! { pub static FOO : Foo = Foo { } ; } | ||
|
||
#[cfg(cfail2)] | ||
{ | ||
FOO.with(|_f| ()) | ||
} | ||
} | ||
|
||
pub fn main() { run() } |
Oops, something went wrong.