Skip to content

Commit

Permalink
liblzma: Tweak a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Larhzu committed Jul 13, 2024
1 parent 6408eda commit 7c292dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/liblzma/simple/arm64.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ arm64_code(void *simple lzma_attribute((__unused__)),
// The full 26-bit immediate is converted.
// The range is +/-128 MiB.
//
// Using the full range is helps quite a lot with
// Using the full range helps quite a lot with
// big executables. Smaller range would reduce false
// positives in non-code sections of the input though
// so this is a compromise that slightly favors big
// files. With the full range only six bits of the 32
// files. With the full range, only six bits of the 32
// need to match to trigger a conversion.
const uint32_t src = instr;
instr = 0x94000000;
Expand Down

0 comments on commit 7c292dd

Please sign in to comment.