We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c0f486 commit 62c5ea6Copy full SHA for 62c5ea6
2 files changed
src/bootstrap/src/core/builder/cargo.rs
@@ -647,6 +647,8 @@ impl Builder<'_> {
647
// If an explicit setting is given, use that
648
setting
649
}
650
+ // Per compiler-team#938, v0 mangling is used on nightly
651
+ None if self.config.channel == "dev" || self.config.channel == "nightly" => true,
652
None => {
653
if mode == Mode::Std {
654
// The standard library defaults to the legacy scheme
tests/ui/sanitizer/dataflow-abilist.txt
@@ -491,6 +491,8 @@ fun:__dfso_*=discard
491
492
# Rust functions.
493
fun:_ZN4core*=uninstrumented
494
+fun:_R*4core*=uninstrumented
495
fun:_ZN3std*=uninstrumented
496
+fun:_R*3std*=uninstrumented
497
fun:rust_eh_personality=uninstrumented
498
fun:_R*__rustc*=uninstrumented
0 commit comments