We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86445c8 commit 475d65cCopy full SHA for 475d65c
compiler/rustc_codegen_llvm/src/llvm/ffi.rs
@@ -912,17 +912,7 @@ unsafe extern "C" {
912
pub fn LLVMGetPoison(Ty: &Type) -> &Value;
913
914
// Operations on metadata
915
- #[deprecated = "replace with LLVMMDStringInContext2"]
916
- pub fn LLVMMDStringInContext(C: &Context, Str: *const c_char, SLen: c_uint) -> &Value;
917
-
918
pub fn LLVMMDStringInContext2(C: &Context, Str: *const c_char, SLen: size_t) -> &Metadata;
919
920
- #[deprecated = "replace with LLVMMDNodeInContext2"]
921
- pub fn LLVMMDNodeInContext<'a>(
922
- C: &'a Context,
923
- Vals: *const &'a Value,
924
- Count: c_uint,
925
- ) -> &'a Value;
926
pub fn LLVMMDNodeInContext2<'a>(
927
C: &'a Context,
928
Vals: *const &'a Metadata,
0 commit comments