We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0d61135 + dcd4825 commit 48fc7d9Copy full SHA for 48fc7d9
src/abi.rs
@@ -48,8 +48,8 @@ impl GccType for CastTarget {
48
let mut args: Vec<_> = self
49
.prefix
50
.iter()
51
- .flat_map(|option_kind| {
52
- option_kind.map(|kind| Reg { kind, size: self.prefix_chunk_size }.gcc_type(cx))
+ .flat_map(|option_reg| {
+ option_reg.map(|reg| reg.gcc_type(cx))
53
})
54
.chain((0..rest_count).map(|_| rest_gcc_unit))
55
.collect();
0 commit comments