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 324f8d0 commit 6ca1f3bCopy full SHA for 6ca1f3b
mlir/lib/Target/Wasm/TranslateFromWasm.cpp
@@ -956,7 +956,7 @@ inline parsed_inst_t ExpressionParser::buildNumericOp(
956
<< ", type = " << ty << " ***";
957
auto tysToPop = SmallVector<Type, numOperands>();
958
tysToPop.resize(numOperands);
959
- std::fill(tysToPop.begin(), tysToPop.end(), ty);
+ llvm::fill(tysToPop, ty);
960
auto operands = popOperands(tysToPop);
961
if (failed(operands))
962
return failure();
0 commit comments