Commit caa7193c authored by Ken Thompson's avatar Ken Thompson

took out vlong/uvlong/rune conversions

SVN=126053
parent 4d6d4e7f
......@@ -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",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment