Skip to content

Commit

Permalink
Auto merge of #36261 - parched:soft-float, r=pnkfelix
Browse files Browse the repository at this point in the history
Fix documentation with 'soft-float' codegen option

This option doesn't cause software FP routines
to be called, it only changes the float ABI.

Additionally, this option is ignored by all targets,
except the ARM eabihf ones.
  • Loading branch information
bors authored Sep 22, 2016
2 parents a09cb57 + ffdd982 commit 458f411
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc/session/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ options! {CodegenOptions, CodegenSetter, basic_codegen_options,
no_vectorize_slp: bool = (false, parse_bool, [TRACKED],
"don't run LLVM's SLP vectorization pass"),
soft_float: bool = (false, parse_bool, [TRACKED],
"generate software floating point library calls"),
"use soft float ABI (*eabihf targets only)"),
prefer_dynamic: bool = (false, parse_bool, [TRACKED],
"prefer dynamic linking to static linking"),
no_integrated_as: bool = (false, parse_bool, [TRACKED],
Expand Down

0 comments on commit 458f411

Please sign in to comment.