diff options
| author | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2019-06-12 16:06:35 +0300 |
|---|---|---|
| committer | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2019-06-12 16:06:35 +0300 |
| commit | 4c98cb6f7586d92be37c94c6063fa9645a448e92 (patch) | |
| tree | 70c3cbd16e1e1a22e163f2d457511edb1757cab4 /src/librustc_codegen_llvm/debuginfo | |
| parent | 87b6b864686eecd3c6ee7b6b3bba04f7d1f67be5 (diff) | |
| download | rust-4c98cb6f7586d92be37c94c6063fa9645a448e92.tar.gz rust-4c98cb6f7586d92be37c94c6063fa9645a448e92.zip | |
rustc_codegen_llvm: `deny(internal)`.
Diffstat (limited to 'src/librustc_codegen_llvm/debuginfo')
| -rw-r--r-- | src/librustc_codegen_llvm/debuginfo/metadata.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/librustc_codegen_llvm/debuginfo/metadata.rs b/src/librustc_codegen_llvm/debuginfo/metadata.rs index ac798143c00..3c37240b166 100644 --- a/src/librustc_codegen_llvm/debuginfo/metadata.rs +++ b/src/librustc_codegen_llvm/debuginfo/metadata.rs @@ -2257,11 +2257,7 @@ pub fn create_global_var_metadata( /// given type. /// /// Adds the created metadata nodes directly to the crate's IR. -pub fn create_vtable_metadata( - cx: &CodegenCx<'ll, 'tcx>, - ty: ty::Ty<'tcx>, - vtable: &'ll Value, -) { +pub fn create_vtable_metadata(cx: &CodegenCx<'ll, 'tcx>, ty: Ty<'tcx>, vtable: &'ll Value) { if cx.dbg_cx.is_none() { return; } |
