aboutsummaryrefslogtreecommitdiff
path: root/sys/amd64/amd64/support.S
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2003-05-11 22:38:54 +0000
committerPeter Wemm <peter@FreeBSD.org>2003-05-11 22:38:54 +0000
commit4ce3e250ce46e675d77fe7fe0e15bdcabb8eb946 (patch)
tree5b75b1009060c6d332affece015d63db054f6601 /sys/amd64/amd64/support.S
parenta885db9a13b49706d6f3fa8a1a9606fa126c2015 (diff)
downloadsrc-4ce3e250ce46e675d77fe7fe0e15bdcabb8eb946.tar.gz
src-4ce3e250ce46e675d77fe7fe0e15bdcabb8eb946.zip
Since compiling natively, the compile environment has been less forgiving
about silly typos. Use the correct comment sequences.
Notes
Notes: svn path=/head/; revision=114917
Diffstat (limited to 'sys/amd64/amd64/support.S')
-rw-r--r--sys/amd64/amd64/support.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/amd64/amd64/support.S b/sys/amd64/amd64/support.S
index b9b18e841b64..94b5229daa8e 100644
--- a/sys/amd64/amd64/support.S
+++ b/sys/amd64/amd64/support.S
@@ -366,7 +366,7 @@ ENTRY(fuword32)
cmpq %rax,%rdi /* verify address is valid */
ja fusufault
-# XXX use the 64 extend
+/* XXX use the 64 extend */
xorq %rax, %rax
movl (%rdi),%eax
movq $0,PCB_ONFAULT(%rcx)
@@ -397,7 +397,7 @@ ENTRY(fuword16)
cmpq %rax,%rdi
ja fusufault
-# XXX use the 64 extend
+/* XXX use the 64 extend */
xorq %rax, %rax
movzwl (%rdi),%eax
movq $0,PCB_ONFAULT(%rcx)
@@ -414,7 +414,7 @@ ENTRY(fubyte)
cmpq %rax,%rdi
ja fusufault
-# XXX use the 64 extend
+/* XXX use the 64 extend */
xorq %rax, %rax
movzbl (%rdi),%eax
movq $0,PCB_ONFAULT(%rcx)