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[]) ...@@ -22,6 +22,10 @@ main(int argc, char *argv[])
static int wptr = 8; // width of a pointer static int wptr = 8; // width of a pointer
static int wmax = 8; // max rounding 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* static char*
typedefs[] = typedefs[] =
{ {
...@@ -30,13 +34,13 @@ typedefs[] = ...@@ -30,13 +34,13 @@ typedefs[] =
"int", "int32", // ints "int", "int32", // ints
"uint", "uint32", "uint", "uint32",
"rune", "uint32", // "rune", "uint32",
"long", "int64", // longs "long", "int64", // longs
"ulong", "uint64", "ulong", "uint64",
"vlong", "int64", // vlongs // "vlong", "int64", // vlongs
"uvlong", "uint64", // "uvlong", "uint64",
"float", "float32", // floats "float", "float32", // floats
"double", "float64", "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