From: Russ Cox Date: Mon, 16 Sep 2013 18:22:24 +0000 (-0400) Subject: runtime: fix freebsd build X-Git-Tag: go1.2rc2~198 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a70cbf1329e4ca7f3aaa62ab825dd33933c80e9e;p=gostls13.git runtime: fix freebsd build TBR=golang-dev CC=golang-dev https://golang.org/cl/13720044 --- 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.