From d3c7888ab5c09725d4b90fddfcd0df0cb63106c6 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Mon, 14 Jun 2010 11:24:51 -0700 Subject: gc: no more ... various cleanup, deleting unused code R=ken2 CC=golang-dev http://codereview.appspot.com/1663041 --- src/cmd/gc/bits.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/cmd/gc/bits.c') diff --git a/src/cmd/gc/bits.c b/src/cmd/gc/bits.c index 59a8e04ef..1f2a776fd 100644 --- a/src/cmd/gc/bits.c +++ b/src/cmd/gc/bits.c @@ -30,6 +30,7 @@ #include "go.h" +/* Bits bor(Bits a, Bits b) { @@ -52,7 +53,6 @@ band(Bits a, Bits b) return c; } -/* Bits bnot(Bits a) { @@ -76,6 +76,7 @@ bany(Bits *a) return 0; } +/* int beq(Bits a, Bits b) { @@ -86,6 +87,7 @@ beq(Bits a, Bits b) return 0; return 1; } +*/ int bnum(Bits a) @@ -110,6 +112,7 @@ blsh(uint n) return c; } +/* int bset(Bits a, uint n) { @@ -117,6 +120,7 @@ bset(Bits a, uint n) return 1; return 0; } +*/ int bitno(int32 b) -- cgit v1.2.3