rust/compiler
Matthias Krüger 422c76adae
Rollup merge of #146178 - folkertdev:static-align, r=jdonszelmann,ralfjung,traviscross
Implement `#[rustc_align_static(N)]` on `static`s

Tracking issue: https://github.com/rust-lang/rust/issues/146177

```rust
#![feature(static_align)]

#[rustc_align_static(64)]
static SO_ALIGNED: u64 = 0;
```

We need a different attribute than `rustc_align` because unstable attributes are tied to their feature (we can't have two unstable features use the same unstable attribute). Otherwise this uses all of the same infrastructure as `#[rustc_align]`.

r? `@traviscross`
2025-09-10 14:17:38 +02:00
..
2025-09-08 22:07:43 -04:00
2025-09-08 15:07:12 -07:00
2025-09-09 14:49:16 +02:00
2025-09-08 15:07:12 -07:00
2025-09-08 09:23:37 -07:00
2025-09-09 14:49:16 +02:00
2025-09-08 15:07:12 -07:00
2025-09-09 14:49:16 +02:00
2025-09-09 14:49:16 +02:00