Fix debuginfo-tests/llvm-prettyprinters build after MLIR API change in e6260ad043d8 (NFC)

This commit is contained in:
Mehdi Amini 2021-03-02 19:20:10 +00:00
parent 438c98515c
commit 068aa12f96

View File

@ -26,7 +26,7 @@ mlir::Type TupleType =
auto UnknownLoc = mlir::UnknownLoc::get(&Context);
auto FileLineColLoc = mlir::FileLineColLoc::get("file", 7, 8, &Context);
auto OpaqueLoc = mlir::OpaqueLoc::get<uintptr_t>(9, &Context);
auto NameLoc = mlir::NameLoc::get(Identifier, &Context);
auto NameLoc = mlir::NameLoc::get(Identifier);
auto CallSiteLoc = mlir::CallSiteLoc::get(FileLineColLoc, OpaqueLoc);
auto FusedLoc = mlir::FusedLoc::get({FileLineColLoc, NameLoc}, &Context);