aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/runtime.h
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2012-01-26 16:25:07 -0500
committerRuss Cox <rsc@golang.org>2012-01-26 16:25:07 -0500
commit408f0b1f7459ebcbc74ad5936950072796fe449a (patch)
tree8b13422bc016157ca6a612913f638ff9bfc93446 /src/pkg/runtime/runtime.h
parent109a9763550aac3071e30f6e13cb5ec1172aa017 (diff)
downloadgo-408f0b1f7459ebcbc74ad5936950072796fe449a.tar.xz
gc, runtime: handle floating point map keys
Fixes #2609. R=ken2 CC=golang-dev https://golang.org/cl/5572069
Diffstat (limited to 'src/pkg/runtime/runtime.h')
-rw-r--r--src/pkg/runtime/runtime.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pkg/runtime/runtime.h b/src/pkg/runtime/runtime.h
index a30a16cf7e..df2cd149f2 100644
--- a/src/pkg/runtime/runtime.h
+++ b/src/pkg/runtime/runtime.h
@@ -375,6 +375,10 @@ enum
AINTER,
ANILINTER,
ASLICE,
+ AFLOAT32,
+ AFLOAT64,
+ ACPLX64,
+ ACPLX128,
Amax
};
typedef struct Alg Alg;