summaryrefslogtreecommitdiff
path: root/src/bytes
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-09-24 19:18:01 -0400
committerRuss Cox <rsc@golang.org>2014-09-24 19:18:01 -0400
commit80f4a0c8e719f9aa7db30c3b709e810923f1626e (patch)
treec85a87067fab382cdf7e128705536d8dce2a11df /src/bytes
parent79c0c8a7fb5088f9f756d0774707b735ff426876 (diff)
downloadgo-80f4a0c8e719f9aa7db30c3b709e810923f1626e.tar.gz
cmd/go: fix bytes and net the right way
Not sure why they used empty.s and all these other packages were special cased in cmd/go instead. Add them to the list. This avoids problems with net .s files being compiled with gcc in cgo mode and gcc not supporting // comments on ARM. Not a problem with bytes, but be consistent. The last change fixed the ARM build but broke the Windows build. Maybe *this* will make everyone happy. Sigh. TBR=iant CC=golang-codereviews https://codereview.appspot.com/144530046
Diffstat (limited to 'src/bytes')
-rw-r--r--src/bytes/bytes.s5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/bytes/bytes.s b/src/bytes/bytes.s
deleted file mode 100644
index 55103bae0..000000000
--- a/src/bytes/bytes.s
+++ /dev/null
@@ -1,5 +0,0 @@
-// Copyright 2013 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// This file is here just to make the go tool happy.