We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1fb230e + 9de972e commit ddd69b4Copy full SHA for ddd69b4
clang/lib/CodeGen/CGCall.h
@@ -449,12 +449,12 @@ inline FnInfoOpts operator&(FnInfoOpts A, FnInfoOpts B) {
449
llvm::to_underlying(B));
450
}
451
452
-inline FnInfoOpts operator|=(FnInfoOpts A, FnInfoOpts B) {
+inline FnInfoOpts &operator|=(FnInfoOpts &A, FnInfoOpts B) {
453
A = A | B;
454
return A;
455
456
457
-inline FnInfoOpts operator&=(FnInfoOpts A, FnInfoOpts B) {
+inline FnInfoOpts &operator&=(FnInfoOpts &A, FnInfoOpts B) {
458
A = A & B;
459
460
0 commit comments