Issue 167015
Summary [clang-tidy] Check request: llvm-no-parentheses-for-single-stmt-if
Labels clang-tidy
Assignees
Reporter denzor200
    before:
```
 if (RHS) {
    RHSOpcode = RHS->getOpcode();
  }
```

after:
```
  if (RHS)
    RHSOpcode = RHS->getOpcode();
```
_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to