mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 13:48:50 +00:00
Merge #3143
3143: Make AtomicX type resolve again r=matklad a=matklad Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
commit
1ead9ef13b
1 changed files with 4 additions and 2 deletions
|
@ -418,8 +418,10 @@ pub fn get_rustc_cfg_options() -> CfgOptions {
|
|||
// Some nightly-only cfgs, which are required for stdlib
|
||||
{
|
||||
cfg_options.insert_atom("target_thread_local".into());
|
||||
for &target_has_atomic in ["16", "32", "64", "8", "cas", "ptr"].iter() {
|
||||
cfg_options.insert_key_value("target_has_atomic".into(), target_has_atomic.into())
|
||||
for &target_has_atomic in ["8", "16", "32", "64", "cas", "ptr"].iter() {
|
||||
cfg_options.insert_key_value("target_has_atomic".into(), target_has_atomic.into());
|
||||
cfg_options
|
||||
.insert_key_value("target_has_atomic_load_store".into(), target_has_atomic.into());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue