forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#113807 - mojingran:master, r=WaffleLapkin Tests crash from inappropriate use of common linkage Follows up my proposal under the [tracking issue for the linkage feature](rust-lang#29603 (comment)). Adds test for [issue 109681](rust-lang#109681).
- Loading branch information
Showing
2 changed files
with
17 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// build-fail | ||
// failure-status: 101 | ||
// known-bug: #109681 | ||
|
||
// This test verifies that we continue to hit the LLVM error for common linkage with non-zero | ||
// initializers, since it generates invalid LLVM IR. | ||
// Linkages are internal features marked as perma-unstable, so we don't need to fix the issue | ||
// for now. | ||
#![crate_type="lib"] | ||
#![feature(linkage)] | ||
|
||
#[linkage = "common"] | ||
#[no_mangle] | ||
pub static TEST: bool = true; |
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,3 @@ | ||
'common' global must have a zero initializer! | ||
ptr @TEST | ||
LLVM ERROR: Broken module found, compilation aborted! |