mirror of
https://github.com/golang/go
synced 2024-11-11 22:10:22 -07:00
took out vlong/uvlong/rune conversions
SVN=126053
This commit is contained in:
parent
4d6d4e7f4e
commit
caa7193c95
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user