Skip to content

Commit ddd69b4

Browse files
author
git apple-llvm automerger
committed
Merge commit '9de972e3e1ec' from llvm.org/main into next
2 parents 1fb230e + 9de972e commit ddd69b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/lib/CodeGen/CGCall.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -449,12 +449,12 @@ inline FnInfoOpts operator&(FnInfoOpts A, FnInfoOpts B) {
449449
llvm::to_underlying(B));
450450
}
451451

452-
inline FnInfoOpts operator|=(FnInfoOpts A, FnInfoOpts B) {
452+
inline FnInfoOpts &operator|=(FnInfoOpts &A, FnInfoOpts B) {
453453
A = A | B;
454454
return A;
455455
}
456456

457-
inline FnInfoOpts operator&=(FnInfoOpts A, FnInfoOpts B) {
457+
inline FnInfoOpts &operator&=(FnInfoOpts &A, FnInfoOpts B) {
458458
A = A & B;
459459
return A;
460460
}

0 commit comments

Comments
 (0)