diff options
| author | Walnut <39544927+Walnut356@users.noreply.github.com> | 2024-12-06 10:11:11 -0600 |
|---|---|---|
| committer | Walnut <39544927+Walnut356@users.noreply.github.com> | 2024-12-23 19:12:32 -0600 |
| commit | bc4266ca969f0d52ba59be728635572420de9f18 (patch) | |
| tree | 4e94ce2a12673925db8b50bac70ddde1ba562e7d /compiler/rustc_codegen_llvm/src | |
| parent | 65fe42a5f46a17ac63b21684b7ec8327f1a4c86b (diff) | |
| download | rust-bc4266ca969f0d52ba59be728635572420de9f18.tar.gz rust-bc4266ca969f0d52ba59be728635572420de9f18.zip | |
add LLVMRustDIBuilderCreateQualifiedType to ffi
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/llvm/ffi.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_llvm/src/llvm/ffi.rs b/compiler/rustc_codegen_llvm/src/llvm/ffi.rs index 9a2bfd95562..c3b5eef225c 100644 --- a/compiler/rustc_codegen_llvm/src/llvm/ffi.rs +++ b/compiler/rustc_codegen_llvm/src/llvm/ffi.rs @@ -1999,6 +1999,12 @@ unsafe extern "C" { AlignInBits: u32, ) -> &'a DIDerivedType; + pub fn LLVMRustDIBuilderCreateQualifiedType<'a>( + Builder: &DIBuilder<'a>, + Tag: c_uint, + Type: &'a DIType, + ) -> &'a DIDerivedType; + pub fn LLVMRustDIBuilderCreateLexicalBlock<'a>( Builder: &DIBuilder<'a>, Scope: &'a DIScope, |
