llvm-wrapper: Pass newly added param to DIBuilder::createEnumerationType()
Added in LLVM in https://github.com/llvm/llvm-project/pull/72011.
This commit is contained in:
parent
0b24479638
commit
7cde2cee35
1 changed files with 5 additions and 1 deletions
|
@ -1105,7 +1105,11 @@ extern "C" LLVMMetadataRef LLVMRustDIBuilderCreateEnumerationType(
|
|||
unwrapDI<DIDescriptor>(Scope), StringRef(Name, NameLen),
|
||||
unwrapDI<DIFile>(File), LineNumber,
|
||||
SizeInBits, AlignInBits, DINodeArray(unwrapDI<MDTuple>(Elements)),
|
||||
unwrapDI<DIType>(ClassTy), "", IsScoped));
|
||||
unwrapDI<DIType>(ClassTy),
|
||||
#if LLVM_VERSION_GE(18, 0)
|
||||
/* RunTimeLang */ 0,
|
||||
#endif
|
||||
"", IsScoped));
|
||||
}
|
||||
|
||||
extern "C" LLVMMetadataRef LLVMRustDIBuilderCreateUnionType(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue