Skip to content

Commit 068aa12

Browse files
committed
Fix debuginfo-tests/llvm-prettyprinters build after MLIR API change in e6260ad (NFC)
1 parent 438c985 commit 068aa12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

debuginfo-tests/llvm-prettyprinters/gdb/mlir-support.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ mlir::Type TupleType =
2626
auto UnknownLoc = mlir::UnknownLoc::get(&Context);
2727
auto FileLineColLoc = mlir::FileLineColLoc::get("file", 7, 8, &Context);
2828
auto OpaqueLoc = mlir::OpaqueLoc::get<uintptr_t>(9, &Context);
29-
auto NameLoc = mlir::NameLoc::get(Identifier, &Context);
29+
auto NameLoc = mlir::NameLoc::get(Identifier);
3030
auto CallSiteLoc = mlir::CallSiteLoc::get(FileLineColLoc, OpaqueLoc);
3131
auto FusedLoc = mlir::FusedLoc::get({FileLineColLoc, NameLoc}, &Context);
3232

0 commit comments

Comments
 (0)