We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1c72be commit 1be1d4aCopy full SHA for 1be1d4a
compiler/rustc_middle/src/ty/layout.rs
@@ -3381,7 +3381,7 @@ impl<'tcx> LayoutCx<'tcx, TyCtxt<'tcx>> {
3381
3382
if arg.layout.is_unsized() || size > max_by_val_size {
3383
arg.make_indirect();
3384
- } else if size > ptr_size && unlikely!(self.has_all_float(&arg.layout)) {
+ } else if size > ptr_size && self.has_all_float(&arg.layout) {
3385
// We don't want to aggregate floats as an aggregates of Integer
3386
// because this will hurt the generated assembly (#93490) but as an
3387
// optimization we want to pass homogeneous aggregate of floats
0 commit comments