aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/newlink/util.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/newlink/util.go')
-rw-r--r--src/cmd/newlink/util.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/cmd/newlink/util.go b/src/cmd/newlink/util.go
deleted file mode 100644
index b8a6b2cb30..0000000000
--- a/src/cmd/newlink/util.go
+++ /dev/null
@@ -1,11 +0,0 @@
-// Copyright 2014 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.
-
-package main
-
-// round returns size rounded up to the next multiple of align;
-// align must be a power of two.
-func round(size, align Addr) Addr {
- return (size + align - 1) &^ (align - 1)
-}