Commit d6b40698 authored by Dave Cheney's avatar Dave Cheney

cmd/internal/gc: fix race build

Add special case for OGETG which should never be instrumented.

Change-Id: I7d082abb8608537f82b03362b687baf2a1d809dc
Reviewed-on: https://go-review.googlesource.com/8551Reviewed-by: default avatarDmitry Vyukov <dvyukov@google.com>
parent 92c826b1
...@@ -410,6 +410,9 @@ func racewalknode(np **Node, init **NodeList, wr int, skip int) { ...@@ -410,6 +410,9 @@ func racewalknode(np **Node, init **NodeList, wr int, skip int) {
OLABEL: OLABEL:
goto ret goto ret
case OGETG:
Yyerror("racewalk: OGETG can happen only in runtime which we don't instrument")
// does not require instrumentation // does not require instrumentation
case OPRINT, // don't bother instrumenting it case OPRINT, // don't bother instrumenting it
OPRINTN, // don't bother instrumenting it OPRINTN, // don't bother instrumenting it
......
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