diff options
| author | bjorn3 <bjorn3@users.noreply.github.com> | 2019-10-13 11:28:19 +0200 | 
|---|---|---|
| committer | bjorn3 <bjorn3@users.noreply.github.com> | 2019-10-13 14:35:14 +0200 | 
| commit | f1ed3a878622ae6d593bc8aa5974b80831fca9f2 (patch) | |
| tree | dd678f21d5d9f5358e546838633ef3aa48026e7a /src/librustc_codegen_llvm/common.rs | |
| parent | 5f6ddb94a619ba12f83549a65d0e6167e2c08c1c (diff) | |
| download | rust-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.rs | 2 | 
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; | 
