From: Taylor R Campbell Date: Sun, 20 Jan 2019 20:10:39 +0000 (+0000) Subject: Fix comment. X-Git-Tag: mit-scheme-pucked-10.1.20~11^2~66^2~51 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=33fcee2b43c2fd21bd75f15a47982ab16f4bc1e4;p=mit-scheme.git Fix comment. --- diff --git a/src/compiler/machines/aarch64/instr1.scm b/src/compiler/machines/aarch64/instr1.scm index 29d75e00e..16a5b5080 100644 --- a/src/compiler/machines/aarch64/instr1.scm +++ b/src/compiler/machines/aarch64/instr1.scm @@ -742,8 +742,8 @@ USA. (MACRO 32 (LDR ,size ,Rt (@PCO (* 4 ,offset))))) ((#x-100000000 #xffffffff) ;; Could maybe use ADRP and LDR with unsigned 8-byte offset, - ;; but only if the offset is even because this instruction is - ;; aligned, wich the assembler can't handle easily. + ;; but only if the offset is or this instruction is aligned, + ;; which the assembler can't handle easily. (MACRO 64 (ADRP-ADD X ,temp (@PCO ,(* 4 offset)))) ;(*) (MACRO 32 (LDR X ,Rt ,temp)))))))