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.
1 parent ef221a4 commit b0849a9Copy full SHA for b0849a9
clang/lib/CIR/CodeGen/CIRGenFunction.cpp
@@ -519,7 +519,7 @@ LValue CIRGenFunction::emitLValue(const Expr *e) {
519
return emitBinaryOperatorLValue(cast<BinaryOperator>(e));
520
case Expr::CompoundAssignOperatorClass: {
521
QualType ty = e->getType();
522
- if (const AtomicType *at = ty->getAs<AtomicType>()) {
+ if (ty->getAs<AtomicType>()) {
523
cgm.errorNYI(e->getSourceRange(),
524
"CompoundAssignOperator with AtomicType");
525
return LValue();
0 commit comments