1
0
mirror of https://github.com/upx/upx.git synced 2025-08-11 22:52:30 +08:00

Tabs in comments

modified:   stub/src/arch/arm64/v8/fall-through.sed
This commit is contained in:
John Reiser
2025-04-04 09:40:13 -07:00
parent f654479924
commit 66dbc5cbd1

View File

@ -1,13 +1,13 @@
# Take the compiler-generated assembly code for subroutine LzmaDecode(),
# and edit it to become a fall-through block.
# The exit epilog:
# ldp x19, x20, [sp]
# ldp x21, x22, [sp,16]
# ldp x23, x24, [sp,32]
# ldp x25, x26, [sp,48]
# ldp x27, x28, [sp,64]
# add sp, sp, 80
# ret
# ldp x19, x20, [sp]
# ldp x21, x22, [sp,16]
# ldp x23, x24, [sp,32]
# ldp x25, x26, [sp,48]
# ldp x27, x28, [sp,64]
# add sp, sp, 80
# ret
# might appear twice, and in the middle of the code.
# Move it to the end, delete the 'ret',
# and 'jmp' to the moved epilog.