1
0
mirror of https://github.com/golang/go synced 2024-11-24 23:57:57 -07:00

libmach: use the standardized format for designated initializers.

The brace style in these files are a little inconsistent so I rolled with
it on a per-file basis.

R=dave, r
CC=golang-dev
https://golang.org/cl/4515194
This commit is contained in:
Jeffrey M Hodges 2011-06-06 06:56:09 +00:00 committed by Rob Pike
parent ce877acf31
commit 7dd47326e5
2 changed files with 851 additions and 851 deletions

File diff suppressed because it is too large Load Diff

View File

@ -81,17 +81,17 @@ struct Obj /* functions to handle each intermediate (.$O) file */
static Obj obj[] = static Obj obj[] =
{ /* functions to identify and parse each type of obj */ { /* functions to identify and parse each type of obj */
[Obj68020] "68020 .2", _is2, _read2, [Obj68020] = { "68020 .2", _is2, _read2 },
[ObjAmd64] "amd64 .6", _is6, _read6, [ObjAmd64] = { "amd64 .6", _is6 , _read6 },
[ObjArm] "arm .5", _is5, _read5, [ObjArm] = { "arm .5", _is5, _read5 },
[ObjAlpha] "alpha .7", _is7, _read7, [ObjAlpha] = { "alpha .7", _is7, _read7 },
[Obj386] "386 .8", _is8, _read8, [Obj386] = { "386 .8", _is8, _read8 },
[ObjSparc] "sparc .k", _isk, _readk, [ObjSparc] = { "sparc .k", _isk, _readk },
[ObjPower] "power .q", _isq, _readq, [ObjPower] = { "power .q", _isq, _readq },
[ObjMips] "mips .v", _isv, _readv, [ObjMips] = { "mips .v", _isv, _readv },
[ObjSparc64] "sparc64 .u", _isu, _readu, [ObjSparc64] = { "sparc64 .u", _isu, _readu },
[ObjPower64] "power64 .9", _is9, _read9, [ObjPower64] = { "power64 .9", _is9, _read9 },
[Maxobjtype] 0, 0 [Maxobjtype] = { 0, 0, 0 }
}; };
struct Symtab struct Symtab