summaryrefslogtreecommitdiff
path: root/src/cmd/ld
diff options
context:
space:
mode:
authorShenghou Ma <minux@golang.org>2014-08-11 23:31:28 -0400
committerShenghou Ma <minux@golang.org>2014-08-11 23:31:28 -0400
commit9a537c1ecfd5ff0bb25eac95c82a6a8c4c0dcc93 (patch)
tree81cb4727e8a8ce44e8370baee21551922855f71d /src/cmd/ld
parent8dfcec8baa67fd6c0027781289bcdc12a6c2cd63 (diff)
downloadgo-9a537c1ecfd5ff0bb25eac95c82a6a8c4c0dcc93.tar.gz
[dev.power64] cmd/ld: add MAXIO back in lib.h
It was accidentally removed. LGTM=dave R=rsc, iant, dave CC=golang-codereviews https://codereview.appspot.com/124880043
Diffstat (limited to 'src/cmd/ld')
-rw-r--r--src/cmd/ld/lib.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cmd/ld/lib.h b/src/cmd/ld/lib.h
index 6ce880ea9..4094dfa6b 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;