replace LLVMRustMetadataAsValue with LLVMMetadataAsValue

This commit is contained in:
klensy 2023-04-02 17:52:38 +03:00
parent 7d6181e4d8
commit c53a9faa6f
3 changed files with 2 additions and 6 deletions

View file

@ -1916,7 +1916,7 @@ extern "C" {
);
pub fn LLVMRustHasModuleFlag(M: &Module, name: *const c_char, len: size_t) -> bool;
pub fn LLVMRustMetadataAsValue<'a>(C: &'a Context, MD: &'a Metadata) -> &'a Value;
pub fn LLVMMetadataAsValue<'a>(C: &'a Context, MD: &'a Metadata) -> &'a Value;
pub fn LLVMRustDIBuilderCreate(M: &Module) -> &mut DIBuilder<'_>;