Skip to content

Commit a9d9420

Browse files
committed
llvm style for loop bound
1 parent 6ad6d2c commit a9d9420

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/WebAssembly/WebAssemblyISelDAGToDAG.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ void WebAssemblyDAGToDAGISel::Select(SDNode *Node) {
255255
SmallVector<MVT, 4> Returns;
256256

257257
bool IsParam = false;
258-
for (unsigned I = 2; I < Node->getNumOperands(); ++I) {
258+
for (unsigned I = 2, E = Node->getNumOperands(); I < E; ++I) {
259259
MVT VT = Node->getOperand(I).getValueType().getSimpleVT();
260260
if (VT == MVT::Untyped) {
261261
IsParam = true;

0 commit comments

Comments
 (0)