Skip to content

Commit

Permalink
Update design/mvp/CanonicalABI.md
Browse files Browse the repository at this point in the history
Co-authored-by: Luke Wagner <mail@lukewagner.name>
  • Loading branch information
sunfishcode and lukewagner authored Dec 21, 2023
1 parent c15041b commit a5f804b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion design/mvp/CanonicalABI.md
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ def store(cx, v, t, ptr):
case S32() : store_int(cx, v, ptr, 4, signed=True)
case S64() : store_int(cx, v, ptr, 8, signed=True)
case Float32() : store_int(cx, encode_float_as_i32(v), ptr, 4)
case Float64() : store_int(cx, encodencode_float_as_i64(v), ptr, 8)
case Float64() : store_int(cx, encode_float_as_i64(v), ptr, 8)
case Char() : store_int(cx, char_to_i32(v), ptr, 4)
case String() : store_string(cx, v, ptr)
case List(t) : store_list(cx, v, ptr, t)
Expand Down

0 comments on commit a5f804b

Please sign in to comment.