Commit 426b48a7 authored by Russ Cox's avatar Russ Cox

cmd/5a, cmd/6a, cmd/8a: fix .y files to match y.tab.[ch]

When I renamed LAddr back to Addr (before sending the
original linker CLs), I missed the .y files in my global substitute.
Since the .y files are only processed when running make in
one of those directories (not during all.bash), they were
behind the generated files.

R=golang-dev, iant
CC=golang-dev
https://golang.org/cl/40770044
parent 75800a9a
......@@ -41,7 +41,7 @@
int32 lval;
double dval;
char sval[8];
LAddr addr;
Addr addr;
}
%left '|'
%left '^'
......@@ -175,7 +175,7 @@ inst:
*/
| LTYPE8 cond ioreg ',' '[' reglist ']'
{
LAddr g;
Addr g;
g = nullgen;
g.type = D_CONST;
......@@ -184,7 +184,7 @@ inst:
}
| LTYPE8 cond '[' reglist ']' ',' ioreg
{
LAddr g;
Addr g;
g = nullgen;
g.type = D_CONST;
......@@ -279,7 +279,7 @@ inst:
*/
| LTYPEJ cond con ',' expr ',' spreg ',' creg ',' creg oexpr
{
LAddr g;
Addr g;
g = nullgen;
g.type = D_CONST;
......
......@@ -40,7 +40,7 @@
vlong lval;
double dval;
char sval[8];
LAddr addr;
Addr addr;
Addr2 addr2;
}
%left '|'
......
......@@ -44,7 +44,7 @@
} con2;
double dval;
char sval[8];
LAddr addr;
Addr addr;
Addr2 addr2;
}
%left '|'
......
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