[llvm] Fix wrong logical-or operator, wrong parenthesis (PR #117156)
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 21 05:46:40 PST 2024
================
@@ -78,8 +78,8 @@ void CalleeSavedAnalysis::analyzeSaves() {
// probably dealing with a parameter passed in a stack -- do not mess
// with it
if (SRU.isStoreUsed(*FIE,
- Prev ? SRU.expr_begin(*Prev) : SRU.expr_begin(BB)),
- /*IncludeLocalAccesses=*/false) {
+ Prev ? SRU.expr_begin(*Prev) : SRU.expr_begin(BB),
+ /*IncludeLocalAccesses=*/false)) {
----------------
RKSimon wrote:
clang-format this
https://github.com/llvm/llvm-project/pull/117156
More information about the llvm-commits
mailing list