Format all the let chains in compiler
This commit is contained in:
parent
2763ca50da
commit
b2d2184ede
206 changed files with 3120 additions and 2228 deletions
|
@ -72,7 +72,8 @@ where
|
|||
// - For backwards compatibility, arguments with natural alignment > 4 are still passed
|
||||
// on stack (via `byval`). For example, this includes `double`, `int64_t`,
|
||||
// and structs containing them, provided they lack an explicit alignment attribute.
|
||||
assert!(arg.layout.align.abi >= max_repr_align,
|
||||
assert!(
|
||||
arg.layout.align.abi >= max_repr_align,
|
||||
"abi alignment {:?} less than requested alignment {max_repr_align:?}",
|
||||
arg.layout.align.abi,
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue