diff options
author | Keith Randall <khr@golang.org> | 2014-09-11 13:46:58 -0700 |
---|---|---|
committer | Keith Randall <khr@golang.org> | 2014-09-11 13:46:58 -0700 |
commit | ccf42b15789beff3c355da0e1e6b71aedf1994d9 (patch) | |
tree | 05a99a7e69b9ff5ea5bd26e5fc0f382bb70f98eb /src/cmd/cc/cc.h | |
parent | 601b6c23d323ab059b6ea9d0a82d8e379ce8099e (diff) | |
download | go-ccf42b15789beff3c355da0e1e6b71aedf1994d9.tar.gz |
runtime: get rid of copyable check - all G frames are copyable.
Just go ahead and do it, if something is wrong we'll throw.
Also rip out cc-generated arg ptr maps, they are useless now.
LGTM=rsc
R=rsc
CC=golang-codereviews
https://codereview.appspot.com/133690045
Diffstat (limited to 'src/cmd/cc/cc.h')
-rw-r--r-- | src/cmd/cc/cc.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/cmd/cc/cc.h b/src/cmd/cc/cc.h index 1dae5acd9..9530f5cf6 100644 --- a/src/cmd/cc/cc.h +++ b/src/cmd/cc/cc.h @@ -762,12 +762,6 @@ int beq(Bits, Bits); int bset(Bits, uint); /* - * bv.c - */ -Bvec* bvalloc(int32 n); -void bvset(Bvec *bv, int32 i); - -/* * dpchk.c */ void dpcheck(Node*); |