rust/compiler/rustc_hir_analysis
Matthias Krüger 7b507db24b
Rollup merge of #119587 - beepster4096:system_varargs, r=petrochenkov
Varargs support for system ABI

This PR allows functions with the `system` ABI to be variadic (under the `extended_varargs_abi_support` feature tracked in #100189). On x86 windows, the `system` ABI is equivalent to `C` for variadic functions. On other platforms, `system` is already equivalent to `C`.

Fixes #110505
2024-01-13 15:10:28 +01:00
..
src Rollup merge of #119587 - beepster4096:system_varargs, r=petrochenkov 2024-01-13 15:10:28 +01:00
Cargo.toml Disallow reference to static mut for expressions 2024-01-06 06:31:35 +03:00
messages.ftl Delegation implementation: step 1 2024-01-12 14:11:16 +03:00
README.md

For high-level intro to how type checking works in rustc, see the type checking chapter of the rustc dev guide.