From: Shenghou Ma Date: Tue, 12 Aug 2014 03:31:28 +0000 (-0400) Subject: [dev.power64] cmd/ld: add MAXIO back in lib.h X-Git-Tag: go1.5beta1~2684^2~25^2~88 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=40d7a6d58254933f941950b1c4714127a1a8a13b;p=gostls13.git [dev.power64] cmd/ld: add MAXIO back in lib.h It was accidentally removed. LGTM=dave R=rsc, iant, dave CC=golang-codereviews https://golang.org/cl/124880043 --- diff --git a/src/cmd/ld/lib.h b/src/cmd/ld/lib.h index 6ce880ea9e..4094dfa6b1 100644 --- a/src/cmd/ld/lib.h +++ b/src/cmd/ld/lib.h @@ -33,6 +33,10 @@ // A section further describes the pieces of that block for // use in debuggers and such. +enum { + MAXIO = 8192, +}; + typedef struct Segment Segment; typedef struct Section Section;