diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-09-17 15:25:38 +1000 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-09-19 20:10:41 +1000 |
| commit | 63210bd68c2a7bb0947625d9d58bf913b1cba602 (patch) | |
| tree | 9047583fcd11e4202bf41548caf47cc582289837 /compiler/rustc_codegen_llvm/src/back | |
| parent | 785a26af03a653bcff632f8d2de845e0aa22a967 (diff) | |
| download | rust-63210bd68c2a7bb0947625d9d58bf913b1cba602.tar.gz rust-63210bd68c2a7bb0947625d9d58bf913b1cba602.zip | |
Rename a parameter.
This seems to be a typo. `singletree` doesn't make sense, and everywhere else it is `singlethread`.
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/back')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/back/owned_target_machine.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_codegen_llvm/src/back/owned_target_machine.rs b/compiler/rustc_codegen_llvm/src/back/owned_target_machine.rs index 681ac75c877..c9750c092ef 100644 --- a/compiler/rustc_codegen_llvm/src/back/owned_target_machine.rs +++ b/compiler/rustc_codegen_llvm/src/back/owned_target_machine.rs @@ -30,7 +30,7 @@ impl OwnedTargetMachine { data_sections: bool, unique_section_names: bool, trap_unreachable: bool, - singletree: bool, + singlethread: bool, verbose_asm: bool, emit_stack_size_section: bool, relax_elf_relocations: bool, @@ -62,7 +62,7 @@ impl OwnedTargetMachine { data_sections, unique_section_names, trap_unreachable, - singletree, + singlethread, verbose_asm, emit_stack_size_section, relax_elf_relocations, |
