Stream: git-wasmtime

Topic: wasmtime / Issue #2393 arm64: Fold some constants into lo...


view this post on Zulip Wasmtime GitHub notifications bot (Nov 12 2020 at 16:28):

jgouly commented on Issue #2393:

Just in case anyone comes across this PR and confused by the commit message, I meant to write:

This changes the following:
mov x0, #4
ldr x0, [x1, x0, SXTW]

Into:
ldr x0, [x1, #4]

view this post on Zulip Wasmtime GitHub notifications bot (Nov 12 2020 at 16:31):

jgouly edited a comment on Issue #2393:

Just in case anyone comes across this PR and confused by the commit message, I meant to write:

This changes the following:
mov x0, #4
ldr x0, [x1, x0, UXTW]

Into:
ldr x0, [x1, #4]

Last updated: Oct 23 2024 at 20:03 UTC