We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a251525 commit 7d34cacCopy full SHA for 7d34cac
mlir/lib/Target/LLVMIR/DebugTranslation.cpp
@@ -221,7 +221,9 @@ llvm::DIFile *DebugTranslation::translateImpl(DIFileAttr attr) {
221
llvm::DILabel *DebugTranslation::translateImpl(DILabelAttr attr) {
222
return llvm::DILabel::get(llvmCtx, translate(attr.getScope()),
223
getMDStringOrNull(attr.getName()),
224
- translate(attr.getFile()), attr.getLine());
+ translate(attr.getFile()), attr.getLine(),
225
+ /*Column=*/0, /*IsArtificial=*/true,
226
+ /*CoroSuspendIdx=*/std::nullopt);
227
}
228
229
llvm::DILexicalBlock *DebugTranslation::translateImpl(DILexicalBlockAttr attr) {
0 commit comments