about summary refs log tree commit diff
path: root/src/librustc_codegen_llvm/builder.rs
diff options
context:
space:
mode:
authorEduard-Mihai Burtescu <edy.burt@gmail.com>2020-01-26 18:50:13 +0200
committerEduard-Mihai Burtescu <edy.burt@gmail.com>2020-02-03 12:14:21 +0200
commit0b633c82f094d52a642b53cae64614ff097eebd8 (patch)
tree98eaaa31ac62a13a75c2be318e585a5d14736de5 /src/librustc_codegen_llvm/builder.rs
parent0d34a8772251b3f9d4dd05c81d9531d455a14fc2 (diff)
downloadrust-0b633c82f094d52a642b53cae64614ff097eebd8.tar.gz
rust-0b633c82f094d52a642b53cae64614ff097eebd8.zip
rustc_codegen_ssa: split declare_local into create_dbg_var and dbg_var_addr.
Diffstat (limited to 'src/librustc_codegen_llvm/builder.rs')
-rw-r--r--src/librustc_codegen_llvm/builder.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/librustc_codegen_llvm/builder.rs b/src/librustc_codegen_llvm/builder.rs
index c59b81eb4cc..342ac437d3c 100644
--- a/src/librustc_codegen_llvm/builder.rs
+++ b/src/librustc_codegen_llvm/builder.rs
@@ -57,6 +57,7 @@ impl BackendTypes for Builder<'_, 'll, 'tcx> {
     type Funclet = <CodegenCx<'ll, 'tcx> as BackendTypes>::Funclet;
 
     type DIScope = <CodegenCx<'ll, 'tcx> as BackendTypes>::DIScope;
+    type DIVariable = <CodegenCx<'ll, 'tcx> as BackendTypes>::DIVariable;
 }
 
 impl ty::layout::HasDataLayout for Builder<'_, '_, '_> {