rust/compiler
Matthias Krüger 7ab3997970
Rollup merge of #124463 - gurry:rename-func, r=TaKO8Ki
Rename `inhibit_union_abi_opt()` to `inhibits_union_abi_opt()`

`inihibit` seems to suggest that this function will inhibit optimizations whereas `inhibits` correctly indicates that it will merely _check_ that. With `inhibits` if conditions read more naturally e.g.:

```rust
if repr.inhibits_union_abi_opt() {
}
```
2024-04-28 13:34:42 +02:00
..
2024-04-25 18:26:36 +00:00
2024-04-18 15:36:25 +10:00
2024-04-15 23:27:21 -04:00
2024-04-24 13:12:25 +01:00