Skip to content

Commit 6a263ce

Browse files
[mlir] Fix a warning
This patch fixes: mlir/lib/Dialect/Vector/Transforms/VectorEmulateNarrowType.cpp:202:2: error: extra ';' outside of a function is incompatible with C++98 [-Werror,-Wc++98-compat-extra-semi]
1 parent b14c436 commit 6a263ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Dialect/Vector/Transforms/VectorEmulateNarrowType.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ emulatedVectorLoad(OpBuilder &rewriter, Location loc, Value base,
199199
return rewriter.create<vector::BitCastOp>(
200200
loc, VectorType::get(numEmultedElementsToLoad * scale, origElemType),
201201
newLoad);
202-
};
202+
}
203203

204204
namespace {
205205

0 commit comments

Comments
 (0)