mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-13 17:13:48 +00:00
22b534de4f
There are comments saying these two functions should be kept in sync, but they have very different structures, process symbols in different orders, and there are some inconsistencies. This commit reorders them so they're both mostly processing symbols in alphabetical order, which makes cross-checking them a lot easier. The commit also adds some macros to factor out repetitive code patterns. Plus it adds `sanitizer_cfi_normalize_{integers,pointers}` to `fill_well_known`, which were missing. The commit also moves the handling of `sym::test` out of `build_configuration` into `default_configuration`, where all the other symbols are handled.
30 lines
1.2 KiB
Plaintext
30 lines
1.2 KiB
Plaintext
warning: unexpected `cfg` condition name: `unknown_key`
|
|
--> $DIR/exhaustive-names-values.rs:10:7
|
|
|
|
|
LL | #[cfg(unknown_key = "value")]
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: expected names are: `debug_assertions`, `doc`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `unix`, `windows`
|
|
= note: `#[warn(unexpected_cfgs)]` on by default
|
|
|
|
warning: unexpected `cfg` condition value: `value`
|
|
--> $DIR/exhaustive-names-values.rs:14:7
|
|
|
|
|
LL | #[cfg(test = "value")]
|
|
| ^^^^----------
|
|
| |
|
|
| help: remove the value
|
|
|
|
|
= note: no expected value for `test`
|
|
|
|
warning: unexpected `cfg` condition value: `unk`
|
|
--> $DIR/exhaustive-names-values.rs:18:7
|
|
|
|
|
LL | #[cfg(feature = "unk")]
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= note: expected values for `feature` are: `std`
|
|
|
|
warning: 3 warnings emitted
|
|
|