commit | 0f469a99a3d50c2711fe8159af5f2ee125aa2837 | [log] [tgz] |
---|---|---|
author | Ken Thompson <ken@golang.org> | Tue Mar 17 13:58:38 2009 -0700 |
committer | Ken Thompson <ken@golang.org> | Tue Mar 17 13:58:38 2009 -0700 |
tree | 402ffcd1157623f1f77d69a32b6aecdb5cf3267e | |
parent | e9f4fb2839245b0ac00287eb1f9aa166f5879f0b [diff] [blame] |
binary search on type switches. new feature 'case nil:' in type switch will match iff the interface is nil. R=r OCL=26404 CL=26404
diff --git a/src/cmd/gc/go.h b/src/cmd/gc/go.h index 46c99ba..458a37a 100644 --- a/src/cmd/gc/go.h +++ b/src/cmd/gc/go.h
@@ -659,7 +659,7 @@ int eqtypenoname(Type*, Type*); void argtype(Node*, Type*); int eqargs(Type*, Type*); -uint32 typehash(Type*, int); +uint32 typehash(Type*, int, int); void frame(int); Node* dobad(void); Node* nodintconst(int64);