From 33fcee2b43c2fd21bd75f15a47982ab16f4bc1e4 Mon Sep 17 00:00:00 2001
From: Taylor R Campbell <campbell@mumble.net>
Date: Sun, 20 Jan 2019 20:10:39 +0000
Subject: [PATCH] Fix comment.

---
 src/compiler/machines/aarch64/instr1.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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)))))))
 
-- 
2.25.1