Commit 0bad50f2 authored by Robert Griesemer's avatar Robert Griesemer

cmd/compile/internal/gc: fix go.y to match y.go

In https://go-review.googlesource.com/#/c/16554/ y.go was modified
manually, but go.y (which is the source for y.go) was not changed.

Change-Id: I1273801bfd1ac65b875f4465033b0d062abff0b7
Reviewed-on: https://go-review.googlesource.com/16745Reviewed-by: 's avatarAustin Clements <austin@google.com>
parent e410a527
......@@ -1397,6 +1397,7 @@ xfndcl:
$$.Func.Nosplit = nosplit;
$$.Func.Noinline = noinline;
$$.Func.Nowritebarrier = nowritebarrier;
$$.Func.Nowritebarrierrec = nowritebarrierrec;
$$.Func.Systemstack = systemstack;
funcbody($$);
}
......@@ -1588,6 +1589,7 @@ xdcl_list:
norace = false
nosplit = false
nowritebarrier = false
nowritebarrierrec = false
systemstack = false
}
......
This diff is collapsed.
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