aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin Clements <austin@google.com>2014-11-13 13:48:59 -0500
committerAustin Clements <austin@google.com>2014-11-13 13:48:59 -0500
commit231b8d61e9a7eec0e2145217828a4881392db230 (patch)
treec93d5660c14e6aa492be90d2f62cefeb0f639947
parentc3dadb3d190973b888f5f83de3a3cccdbe7fc949 (diff)
downloadgo-231b8d61e9a7eec0e2145217828a4881392db230.tar.gz
go-231b8d61e9a7eec0e2145217828a4881392db230.zip
[dev.power64] 9l: remove enum as's tag for c2go
None of the other compilers have a tag for this enum. Cleaning all of this up to use proper types will happen after the conversion. LGTM=minux, rsc R=rsc, minux CC=golang-codereviews https://golang.org/cl/166690043
-rw-r--r--src/cmd/9l/9.out.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/9l/9.out.h b/src/cmd/9l/9.out.h
index e494e90ca9..08a339318d 100644
--- a/src/cmd/9l/9.out.h
+++ b/src/cmd/9l/9.out.h
@@ -131,7 +131,7 @@ enum
C_NCLASS, /* must be the last */
};
-enum as
+enum
{
AXXX,
AADD,
@@ -501,7 +501,7 @@ enum
D_R0 = 0, // type is D_REG
D_F0 = D_R0+NREG, // type is D_FREG
-/* reg names iff type is D_SPR */
+/* reg names in offset field iff type is D_SPR */
D_XER = 1,
D_LR = 8,
D_CTR = 9