We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d189cab commit 1ea57aaCopy full SHA for 1ea57aa
src/tools/tidy/src/pal.rs
@@ -42,6 +42,10 @@ const EXCEPTION_PATHS: &[&str] = &[
42
"src/libpanic_abort",
43
"src/libpanic_unwind",
44
"src/libunwind",
45
+ // black_box implementation is LLVM-version specific and it uses
46
+ // target_os to tell targets with different LLVM-versions appart
47
+ // (e.g. `wasm32-unknown-emscripten` vs `wasm32-unknown-unknown`):
48
+ "src/libcore/hint.rs",
49
"src/libstd/sys/", // Platform-specific code for std lives here.
50
// This has the trailing slash so that sys_common is not excepted.
51
"src/libstd/os", // Platform-specific public interfaces
0 commit comments