@@ -330,7 +330,7 @@ mod prim_never {}
330
330
/// the future ("reserved"); some will never be a character ("noncharacters"); and some may be given
331
331
/// different meanings by different users ("private use").
332
332
///
333
- /// `char` is guaranteed to have the same size and alignment as `u32` on all
333
+ /// `char` is guaranteed to have the same size, alignment, and function call ABI as `u32` on all
334
334
/// platforms.
335
335
/// ```
336
336
/// use std::alloc::Layout;
@@ -1557,6 +1557,7 @@ mod prim_ref {}
1557
1557
/// Pointee>::Metadata`).
1558
1558
/// - `usize` is ABI-compatible with the `uN` integer type of the same size, and likewise `isize` is
1559
1559
/// ABI-compatible with the `iN` integer type of the same size.
1560
+ /// - `char` is ABI-compatible with `u32`.
1560
1561
/// - Any two `fn` (function pointer) types are ABI-compatible with each other if they have the same
1561
1562
/// ABI string or the ABI string only differs in a trailing `-unwind`, independent of the rest of
1562
1563
/// their signature. (This means you can pass `fn()` to a function expecting `fn(i32)`, and the
@@ -1585,9 +1586,9 @@ mod prim_ref {}
1585
1586
/// since it is not portable and not a stable guarantee.
1586
1587
///
1587
1588
/// Noteworthy cases of types *not* being ABI-compatible in general are:
1588
- /// * `bool` vs `u8`, and `i32` vs `u32`: on some targets, the calling conventions for these types
1589
- /// differ in terms of what they guarantee for the remaining bits in the register that are not
1590
- /// used by the value.
1589
+ /// * `bool` vs `u8`, `i32` vs `u32`, `char` vs `i32` : on some targets, the calling conventions for
1590
+ /// these types differ in terms of what they guarantee for the remaining bits in the register that
1591
+ /// are not used by the value.
1591
1592
/// * `i32` vs `f32` are not compatible either, as has already been mentioned above.
1592
1593
/// * `struct Foo(u32)` and `u32` are not compatible (without `repr(transparent)`) since structs are
1593
1594
/// aggregate types and often passed in a different way than primitives like `i32`.
0 commit comments