Skip to content

Commit

Permalink
[mlir] Fix a warning
Browse files Browse the repository at this point in the history
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]
  • Loading branch information
kazutakahirata committed Nov 5, 2024
1 parent b14c436 commit 6a263ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ emulatedVectorLoad(OpBuilder &rewriter, Location loc, Value base,
return rewriter.create<vector::BitCastOp>(
loc, VectorType::get(numEmultedElementsToLoad * scale, origElemType),
newLoad);
};
}

namespace {

Expand Down

0 comments on commit 6a263ce

Please sign in to comment.