rust/compiler/rustc_target/src
Dylan DPC afa85f0841
Rollup merge of #94362 - Urgau:check-cfg-values, r=petrochenkov
Add well known values to `--check-cfg` implementation

This pull-request adds well known values for the well known names via `--check-cfg=values()`.

[RFC 3013: Checking conditional compilation at compile time](https://rust-lang.github.io/rfcs/3013-conditional-compilation-checking.html#checking-conditional-compilation-at-compile-time) doesn't define this at all, but this seems a nice improvement.
The activation is done by a empty `values()` (new syntax) similar to `names()` except that `names(foo)` also activate well known names while `values(aa, "aa", "kk")` would not.

As stated this use a different activation logic because well known values for the well known names are not always sufficient.
In fact this is problematic for every `target_*` cfg because of non builtin targets, as the current implementation use those built-ins targets to create the list the well known values.

The implementation is straight forward, first we gather (if necessary) all the values (lazily or not) and then we apply them.

r? ```@petrochenkov```
2022-03-04 22:58:34 +01:00
..
abi formatting fixes 2022-02-21 14:23:22 +01:00
asm ARM: Only allow using d16-d31 with asm! when supported by the target 2022-02-24 22:37:53 +00:00
spec Add well known values to --check-cfg implementation 2022-03-04 11:15:38 +01:00
lib.rs Adopt let else in more places 2022-02-19 17:27:43 +01:00
tests.rs Emit warnings for unused fields in custom targets. 2021-06-17 21:48:02 +02:00