Remove wrapper functions for some unstable options

They are trivial and just forward to the option. Like most other
options, we can just access it directly.
This commit is contained in:
Nilstrieb
2022-12-20 15:02:15 +01:00
parent eb9e5e711d
commit fb79e44df6
8 changed files with 10 additions and 40 deletions

View File

@@ -203,7 +203,7 @@ pub fn target_machine_factory(
sess.opts.unstable_opts.trap_unreachable.unwrap_or(sess.target.trap_unreachable);
let emit_stack_size_section = sess.opts.unstable_opts.emit_stack_sizes;
let asm_comments = sess.asm_comments();
let asm_comments = sess.opts.unstable_opts.asm_comments;
let relax_elf_relocations =
sess.opts.unstable_opts.relax_elf_relocations.unwrap_or(sess.target.relax_elf_relocations);