diff options
author | Ken Thompson <ken@golang.org> | 2008-07-06 11:20:44 -0700 |
---|---|---|
committer | Ken Thompson <ken@golang.org> | 2008-07-06 11:20:44 -0700 |
commit | 9b22ee657b8f7a43fa28d1cc738bb7b4e05d18be (patch) | |
tree | 1c8fe6f81f99ae5c390cb0d55fe994d0771208b4 | |
parent | 5f6655b3aa0765599347bf353cb9aba3578f7ca5 (diff) | |
download | golang-9b22ee657b8f7a43fa28d1cc738bb7b4e05d18be.tar.gz |
took out vlong/uvlong/rune conversions
SVN=126053
-rw-r--r-- | src/cmd/6g/align.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/cmd/6g/align.c b/src/cmd/6g/align.c index 82e0ec981..b43f373c3 100644 --- a/src/cmd/6g/align.c +++ b/src/cmd/6g/align.c @@ -22,6 +22,10 @@ main(int argc, char *argv[]) static int wptr = 8; // width of a pointer static int wmax = 8; // max rounding +/* + * additionally, go declares several platform-specific type aliases: + * ushort, short, uint, int, ulong, long, float, and double. The bit + */ static char* typedefs[] = { @@ -30,13 +34,13 @@ typedefs[] = "int", "int32", // ints "uint", "uint32", - "rune", "uint32", +// "rune", "uint32", "long", "int64", // longs "ulong", "uint64", - "vlong", "int64", // vlongs - "uvlong", "uint64", +// "vlong", "int64", // vlongs +// "uvlong", "uint64", "float", "float32", // floats "double", "float64", |