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 6ad6d2c commit a9d9420Copy full SHA for a9d9420
llvm/lib/Target/WebAssembly/WebAssemblyISelDAGToDAG.cpp
@@ -255,7 +255,7 @@ void WebAssemblyDAGToDAGISel::Select(SDNode *Node) {
255
SmallVector<MVT, 4> Returns;
256
257
bool IsParam = false;
258
- for (unsigned I = 2; I < Node->getNumOperands(); ++I) {
+ for (unsigned I = 2, E = Node->getNumOperands(); I < E; ++I) {
259
MVT VT = Node->getOperand(I).getValueType().getSimpleVT();
260
if (VT == MVT::Untyped) {
261
IsParam = true;
0 commit comments