Skip to content

Commit

Permalink
Fix arm64 type mismatch build error
Browse files Browse the repository at this point in the history
  • Loading branch information
apsun committed Dec 31, 2022
1 parent c51399f commit e67b880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/zippy/adler32_simd.nim
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ elif defined(arm64):
uint32x4 {.importc: "uint32x4_t".} = object
uint8x8 {.importc: "uint8x8_t".} = object
uint16x4 {.importc: "uint16x4_t".} = object
uint32x2 {.importc: "uint8x8_t".} = object
uint32x2 {.importc: "uint32x2_t".} = object

func vmovq_n_u32(a: uint32): uint32x4
func vmovq_n_u16(a: uint16): uint16x8
Expand Down

0 comments on commit e67b880

Please sign in to comment.