Commit 7c3eeda6 authored by Russ Cox's avatar Russ Cox

cmd/gc: use go.builtin as package prefix, not go%2ebuiltin

This matches all the other pseudo-packages.
The line was simply forgotten.

Change-Id: I278f6cbcfc883ea7efad07f99fc8c853b9b5d274
Reviewed-on: https://go-review.googlesource.com/4591Reviewed-by: 's avatarAustin Clements <austin@google.com>
parent 90965718
......@@ -179,6 +179,7 @@ gcmain(int argc, char *argv[])
// pseudo-package, for scoping
builtinpkg = mkpkg(newstrlit("go.builtin"));
builtinpkg->prefix = "go.builtin"; // not go%2ebuiltin
// pseudo-package, accessed by import "unsafe"
unsafepkg = mkpkg(newstrlit("unsafe"));
......
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