about summary refs log tree commit diff
path: root/src/librustc_codegen_llvm/common.rs
diff options
context:
space:
mode:
authorbjorn3 <bjorn3@users.noreply.github.com>2019-10-13 11:28:19 +0200
committerbjorn3 <bjorn3@users.noreply.github.com>2019-10-13 14:35:14 +0200
commitf1ed3a878622ae6d593bc8aa5974b80831fca9f2 (patch)
treedd678f21d5d9f5358e546838633ef3aa48026e7a /src/librustc_codegen_llvm/common.rs
parent5f6ddb94a619ba12f83549a65d0e6167e2c08c1c (diff)
downloadrust-f1ed3a878622ae6d593bc8aa5974b80831fca9f2.tar.gz
rust-f1ed3a878622ae6d593bc8aa5974b80831fca9f2.zip
s/FuncId/Function
Diffstat (limited to 'src/librustc_codegen_llvm/common.rs')
-rw-r--r--src/librustc_codegen_llvm/common.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_codegen_llvm/common.rs b/src/librustc_codegen_llvm/common.rs
index cc2f1b6776e..01055bedc68 100644
--- a/src/librustc_codegen_llvm/common.rs
+++ b/src/librustc_codegen_llvm/common.rs
@@ -86,7 +86,7 @@ impl Funclet<'ll> {
 
 impl BackendTypes for CodegenCx<'ll, 'tcx> {
     type Value = &'ll Value;
-    type FuncId = &'ll Value;
+    type Function = &'ll Value;
 
     type BasicBlock = &'ll BasicBlock;
     type Type = &'ll Type;