Commit e6861d8c authored by Russ Cox's avatar Russ Cox

cmd/5l: reestablish uniform union field naming

R=golang-dev, minux.ma
CC=golang-dev
https://golang.org/cl/7226063
parent 4da6b36f
......@@ -69,8 +69,8 @@ struct Adr
union
{
struct {
int32 offset;
int32 offset2; // argsize
int32 u0offset;
int32 u0offset2; // argsize
} u0off;
char* u0sval;
Ieee u0ieee;
......@@ -84,8 +84,8 @@ struct Adr
char class;
};
#define offset u0.u0off.offset
#define offset2 u0.u0off.offset2
#define offset u0.u0off.u0offset
#define offset2 u0.u0off.u0offset2
#define sval u0.u0sval
#define scon sval
#define ieee u0.u0ieee
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment