Skip to content

Commit fd85da0

Browse files
committed
Auto merge of rust-lang#138601 - RalfJung:wasm-abi-fcw, r=alexcrichton
add FCW to warn about wasm ABI transition See rust-lang#122532 for context: the "C" ABI on wasm32-unk-unk will change. The goal of this lint is to warn about any function definition and calls whose behavior will be affected by the change. My understanding is the following: - scalar arguments are fine - including 128 bit types, they get passed as two `i64` arguments in both ABIs - `repr(C)` structs (recursively) wrapping a single scalar argument are fine (unless they have extra padding due to over-alignment attributes) - all return values are fine `@bjorn3` `@alexcrichton` `@Manishearth` is that correct? I am making this a "show up in future compat reports" lint to maximize the chances people become aware of this. OTOH this likely means warnings for most users of Diplomat so maybe we shouldn't do this? IIUC, wasm-bindgen should be unaffected by this lint as they only pass scalar types as arguments. Tracking issue: rust-lang#138762 Transition plan blog post: rust-lang/blog.rust-lang.org#1531 try-job: dist-various-2
2 parents a01bc74 + fdca24f commit fd85da0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

proc_macro/src/bridge/mod.rs

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
//! Rust ABIs (e.g., stage0/bin/rustc vs stage1/bin/rustc during bootstrap).
88
99
#![deny(unsafe_code)]
10+
// proc_macros anyway don't work on wasm hosts so while both sides of this bridge can
11+
// be built with different versions of rustc, the wasm ABI changes don't really matter.
12+
#![cfg_attr(bootstrap, allow(unknown_lints))]
13+
#![allow(wasm_c_abi)]
1014

1115
use std::hash::Hash;
1216
use std::ops::{Bound, Range};

0 commit comments

Comments
 (0)