Skip to content

Commit 5b43fb5

Browse files
committed
formatting
1 parent 61579b9 commit 5b43fb5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

mlir/lib/Dialect/GPU/IR/GPUDialect.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2115,7 +2115,7 @@ LogicalResult ObjectAttr::verify(function_ref<InFlightDiagnostic()> emitError,
21152115

21162116
namespace {
21172117
ParseResult parseObject(AsmParser &odsParser, CompilationTarget &format,
2118-
StringAttr &object) {
2118+
StringAttr &object) {
21192119
std::optional<CompilationTarget> formatResult;
21202120
StringRef enumKeyword;
21212121
auto loc = odsParser.getCurrentLocation();

mlir/lib/Dialect/LLVMIR/IR/LLVMAttrs.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ using namespace mlir::LLVM;
2828
/// opcode. Some DWARF expression operations have a specific number of operands
2929
/// and may appear in a textual form.
3030
static ParseResult parseExpressionArg(AsmParser &parser, uint64_t opcode,
31-
SmallVector<uint64_t> &args);
31+
SmallVector<uint64_t> &args);
3232

3333
/// Prints DWARF expression arguments with respect to the specific DWARF
3434
/// operation. Some operands are printed in their textual form.
@@ -145,7 +145,7 @@ DIExpressionAttr DIExpressionAttr::get(MLIRContext *context) {
145145
}
146146

147147
ParseResult parseExpressionArg(AsmParser &parser, uint64_t opcode,
148-
SmallVector<uint64_t> &args) {
148+
SmallVector<uint64_t> &args) {
149149
auto operandParser = [&]() -> LogicalResult {
150150
uint64_t operand = 0;
151151
if (!args.empty() && opcode == llvm::dwarf::DW_OP_LLVM_convert) {

mlir/test/lib/Dialect/Test/TestTypes.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ static ParseResult parseCustomTypeA(AsmParser &parser, int &aResult) {
9797
static void printCustomTypeA(AsmPrinter &printer, int a) { printer << a; }
9898

9999
static ParseResult parseCustomTypeB(AsmParser &parser, int a,
100-
std::optional<int> &bResult) {
100+
std::optional<int> &bResult) {
101101
if (a < 0)
102102
return success();
103103
for (int i : llvm::seq(0, a))

0 commit comments

Comments
 (0)