[Mlir-commits] [mlir] [MLIR][LLVM] Translate Debug EmissionKind (PR #74376)
Billy Zhu
llvmlistbot at llvm.org
Tue Dec 5 00:04:37 PST 2023
================
@@ -102,7 +102,9 @@ llvm::DICompileUnit *DebugTranslation::translateImpl(DICompileUnitAttr attr) {
attr.getSourceLanguage(), translate(attr.getFile()),
attr.getProducer() ? attr.getProducer().getValue() : "",
attr.getIsOptimized(),
- /*Flags=*/"", /*RV=*/0);
+ /*Flags=*/"", /*RV=*/0, /*SplitName=*/{},
+ static_cast<llvm::DICompileUnit::DebugEmissionKind>(
----------------
zyx-billy wrote:
Yeah there are other enums like `DISubprogramFlags` that are also just redefined and rely on static_cast. Might be a good idea to reuse llvm enums if possible, or set up explicit mappings?
https://github.com/llvm/llvm-project/pull/74376
More information about the Mlir-commits
mailing list