[NFC] Fix build warnings

This commit is contained in:
Rahul Joshi 2020-09-25 09:35:41 -07:00
parent b5a3b901c7
commit 2d128b04d9
2 changed files with 2 additions and 2 deletions
mlir
lib/Conversion/ShapeToStandard
tools/mlir-tblgen

View File

@ -124,7 +124,7 @@ namespace {
// `shape.const_witness true`. // `shape.const_witness true`.
class ConvertShapeConstraints class ConvertShapeConstraints
: public ConvertShapeConstraintsBase<ConvertShapeConstraints> { : public ConvertShapeConstraintsBase<ConvertShapeConstraints> {
void runOnOperation() { void runOnOperation() override {
auto func = getOperation(); auto func = getOperation();
auto *context = &getContext(); auto *context = &getContext();

View File

@ -952,7 +952,7 @@ static void genCustomDirectiveParser(CustomDirective *dir, OpMethodBody &body) {
body << llvm::formatv(" if ({0}Operand.hasValue())\n" body << llvm::formatv(" if ({0}Operand.hasValue())\n"
" {0}Operands.push_back(*{0}Operand);\n", " {0}Operands.push_back(*{0}Operand);\n",
var->name); var->name);
} else if (auto *dir = dyn_cast<TypeRefDirective>(&param)) { } else if (isa<TypeRefDirective>(&param)) {
// In the `type_ref` case, do not parse a new Type that needs to be added. // In the `type_ref` case, do not parse a new Type that needs to be added.
// Just do nothing here. // Just do nothing here.
} else if (auto *dir = dyn_cast<TypeDirective>(&param)) { } else if (auto *dir = dyn_cast<TypeDirective>(&param)) {