From a70cbf1329e4ca7f3aaa62ab825dd33933c80e9e Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Mon, 16 Sep 2013 14:22:24 -0400 Subject: [PATCH] runtime: fix freebsd build TBR=golang-dev CC=golang-dev https://golang.org/cl/13720044 --- src/pkg/runtime/sys_freebsd_amd64.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/runtime/sys_freebsd_amd64.s b/src/pkg/runtime/sys_freebsd_amd64.s index ef3beaedcd..63cd3ac074 100644 --- a/src/pkg/runtime/sys_freebsd_amd64.s +++ b/src/pkg/runtime/sys_freebsd_amd64.s @@ -28,7 +28,7 @@ // but it expects the third argument in R10. Instead of rewriting // all the assembly in this file, #define SYSCALL to a safe simulation // using INT $0x80. -/ +// // INT $0x80 is a little slower than SYSCALL, but correctness wins. // // See golang.org/issue/6372.