diff options
| author | A4-Tacks <wdsjxhno1001@163.com> | 2025-09-05 06:30:28 +0800 |
|---|---|---|
| committer | A4-Tacks <wdsjxhno1001@163.com> | 2025-09-05 06:30:28 +0800 |
| commit | ec34e8e69fb2e133e6ec0ebc87443f6fa8bda092 (patch) | |
| tree | f98a890a50e60ea4a949eee93553e33ef246b775 /compiler/rustc_codegen_gcc | |
| parent | ab5113a316959f2558f03a7bf590e967602f02df (diff) | |
| download | rust-ec34e8e69fb2e133e6ec0ebc87443f6fa8bda092.tar.gz rust-ec34e8e69fb2e133e6ec0ebc87443f6fa8bda092.zip | |
Fix precedence parenthesis for replace_arith_op
Example
---
```rust
fn main() {
let x = 1*x $0+ 2;
}
```
**Before this PR**:
```rust
fn main() {
let x = 1*x.wrapping_add(2);
}
```
**After this PR**:
```rust
fn main() {
let x = (1*x).wrapping_add(2);
}
```
Diffstat (limited to 'compiler/rustc_codegen_gcc')
0 files changed, 0 insertions, 0 deletions
