Skip to content

Commit 4f7f17e

Browse files
bcardosolopeslanza
authored andcommitted
[CIR][NFC] Fix multiple warnings from latest PRs
1 parent 58611d4 commit 4f7f17e

File tree

5 files changed

+3
-10
lines changed

5 files changed

+3
-10
lines changed

clang/lib/CIR/CodeGen/CIRGenBuiltin.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -227,14 +227,11 @@ makeBinaryAtomicValue(CIRGenFunction &cgf, mlir::cir::AtomicFetchKind kind,
227227

228228
Address destAddr = checkAtomicAlignment(cgf, expr);
229229
auto &builder = cgf.getBuilder();
230-
auto *ctxt = builder.getContext();
231230
auto intType = builder.getSIntNTy(cgf.getContext().getTypeSize(typ));
232231
mlir::Value val = cgf.buildScalarExpr(expr->getArg(1));
233232
mlir::Type valueType = val.getType();
234233
val = buildToInt(cgf, val, typ, intType);
235234

236-
auto fetchAttr =
237-
mlir::cir::AtomicFetchKindAttr::get(builder.getContext(), kind);
238235
auto rmwi = builder.create<mlir::cir::AtomicFetch>(
239236
cgf.getLoc(expr->getSourceRange()), destAddr.emitRawPointer(), val, kind,
240237
ordering, false, /* is volatile */

clang/lib/CIR/CodeGen/CIRGenDecl.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -631,9 +631,6 @@ void CIRGenFunction::buildStaticVarDecl(const VarDecl &D,
631631
if (D.getType()->isVariablyModifiedType())
632632
llvm_unreachable("VLAs are NYI");
633633

634-
// Save the type in case adding the initializer forces a type change.
635-
mlir::Type expectedType = addr.getType();
636-
637634
auto var = globalOp;
638635

639636
// CUDA's local and local static __shared__ variables should not

clang/lib/CIR/CodeGen/CIRGenStmt.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ CIRGenFunction::foldCaseStmt(const clang::CaseStmt &S, mlir::Type condType,
655655
for (int i = 1; i < caseAttrCount; ++i) {
656656
// If there are multiple case attributes, we need to create a new region
657657
auto *region = currLexScope->createSwitchRegion();
658-
auto *block = builder.createBlock(region);
658+
builder.createBlock(region);
659659
}
660660

661661
return lastCase;

clang/lib/CIR/Dialect/IR/CIRDialect.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -1150,6 +1150,7 @@ void printSwitchOp(OpAsmPrinter &p, SwitchOp op,
11501150
case cir::CaseOpKind::Range:
11511151
assert(attr.getValue().size() == 2 && "range must have two values");
11521152
// The print format of the range is the same as anyof
1153+
LLVM_FALLTHROUGH;
11531154
case cir::CaseOpKind::Anyof: {
11541155
p << ", [";
11551156
llvm::interleaveComma(attr.getValue(), p, [&](const Attribute &a) {

clang/lib/CIR/Dialect/Transforms/FlattenCFG.cpp

+1-3
Original file line numberDiff line numberDiff line change
@@ -356,8 +356,6 @@ class CIRSwitchOpFlattening
356356
caseDestinations.push_back(&region.front());
357357
}
358358
break;
359-
default:
360-
llvm_unreachable("unsupported case kind");
361359
}
362360

363361
// Previous case is a fallthrough: branch it to this case.
@@ -405,7 +403,7 @@ class CIRSwitchOpFlattening
405403
constexpr int kSmallRangeThreshold = 64;
406404
if ((upperBound - lowerBound)
407405
.ult(llvm::APInt(32, kSmallRangeThreshold))) {
408-
for (auto iValue = lowerBound; iValue.sle(upperBound); iValue++) {
406+
for (auto iValue = lowerBound; iValue.sle(upperBound); (void)iValue++) {
409407
caseValues.push_back(iValue);
410408
caseOperands.push_back(rangeOperands[index]);
411409
caseDestinations.push_back(rangeDestinations[index]);

0 commit comments

Comments
 (0)