chore(deps): Update sqlite dependencies
This commit is contained in:
8
vendor/modernc.org/cc/v3/abi.go
generated
vendored
8
vendor/modernc.org/cc/v3/abi.go
generated
vendored
@ -395,8 +395,12 @@ func (a *ABI) layout(ctx *context, n Node, t *structType) *structType {
|
||||
group += f.bitFieldWidth
|
||||
default:
|
||||
if n := group % 64; n != 0 {
|
||||
group -= n
|
||||
off += int64(normalizeBitFieldWidth(group) - group)
|
||||
if ctx.cfg.FixBitfieldPadding {
|
||||
off += int64(normalizeBitFieldWidth(group-n) - group)
|
||||
} else {
|
||||
group -= n
|
||||
off += int64(normalizeBitFieldWidth(group) - group)
|
||||
}
|
||||
}
|
||||
off0 := off
|
||||
off = roundup(off, 8*int64(al))
|
||||
|
Reference in New Issue
Block a user