krasimirgg wrote:

It appears that this introduced a regression in code like this:
```
int d = 0;
int c(int i) { return i; }
void a() { double b = ((double)c(0)) * d / (double)0; }
```

After this patch, the last line gets formatted as:
```
void a() { double b = ((double)c(0))*d / (double)0; }
```

https://github.com/llvm/llvm-project/pull/102261
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to