-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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 #68566 - pietroalbini:rollup-22hbo3e, r=pietroalbini
Rollup of 4 pull requests Successful merges: - #67928 (Update RELEASES.md for 1.41.0) - #68370 (Ensure that we error when calling "const extern fn" with wrong convention) - #68531 ([self-profiler] Two small cleanups) - #68562 (Fix spelling errors) Failed merges: r? @ghost
- Loading branch information
Showing
10 changed files
with
170 additions
and
19 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
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
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,16 @@ | ||
// Checks that we report ABI mismatches for "const extern fn" | ||
// compile-flags: -Z unleash-the-miri-inside-of-you | ||
|
||
#![feature(const_extern_fn)] | ||
|
||
const extern "C" fn c_fn() {} | ||
|
||
const fn call_rust_fn(my_fn: extern "Rust" fn()) { | ||
my_fn(); //~ ERROR any use of this value will cause an error | ||
//~^ WARN skipping const checks | ||
} | ||
|
||
const VAL: () = call_rust_fn(unsafe { std::mem::transmute(c_fn as extern "C" fn()) }); | ||
//~^ WARN skipping const checks | ||
|
||
fn main() {} |
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,28 @@ | ||
warning: skipping const checks | ||
--> $DIR/abi-mismatch.rs:9:5 | ||
| | ||
LL | my_fn(); | ||
| ^^^^^^^ | ||
|
||
warning: skipping const checks | ||
--> $DIR/abi-mismatch.rs:13:39 | ||
| | ||
LL | const VAL: () = call_rust_fn(unsafe { std::mem::transmute(c_fn as extern "C" fn()) }); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: any use of this value will cause an error | ||
--> $DIR/abi-mismatch.rs:9:5 | ||
| | ||
LL | my_fn(); | ||
| ^^^^^^^ | ||
| | | ||
| tried to call a function with ABI C using caller ABI Rust | ||
| inside call to `call_rust_fn` at $DIR/abi-mismatch.rs:13:17 | ||
... | ||
LL | const VAL: () = call_rust_fn(unsafe { std::mem::transmute(c_fn as extern "C" fn()) }); | ||
| -------------------------------------------------------------------------------------- | ||
| | ||
= note: `#[deny(const_err)]` on by default | ||
|
||
error: aborting due to previous error | ||
|
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