diff options
| author | bjorn3 <bjorn3@users.noreply.github.com> | 2020-11-15 10:12:10 +0100 |
|---|---|---|
| committer | bjorn3 <bjorn3@users.noreply.github.com> | 2020-11-21 19:22:31 +0100 |
| commit | 6a5f537fb902864ad3b3b4a3b043bcc0ee64ec54 (patch) | |
| tree | 1626292b81c8a6abb84f78406862a70d69680adc /compiler/rustc_codegen_llvm/src | |
| parent | 39b8b2b623087fa643daeed424bd2fa79076f463 (diff) | |
| download | rust-6a5f537fb902864ad3b3b4a3b043bcc0ee64ec54.tar.gz rust-6a5f537fb902864ad3b3b4a3b043bcc0ee64ec54.zip | |
Rename prefix_chunk to prefix_chunk_size
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/abi.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/abi.rs b/compiler/rustc_codegen_llvm/src/abi.rs index bb152104d64..915dd3d9eda 100644 --- a/compiler/rustc_codegen_llvm/src/abi.rs +++ b/compiler/rustc_codegen_llvm/src/abi.rs @@ -158,7 +158,7 @@ impl LlvmType for CastTarget { .prefix .iter() .flat_map(|option_kind| { - option_kind.map(|kind| Reg { kind, size: self.prefix_chunk }.llvm_type(cx)) + option_kind.map(|kind| Reg { kind, size: self.prefix_chunk_size }.llvm_type(cx)) }) .chain((0..rest_count).map(|_| rest_ll_unit)) .collect(); |
