libgo: update to Go1.14beta1
[platform/upstream/gcc.git] / libgo / go / cmd / internal / objabi / head.go
index 0a54228..6836c33 100644 (file)
@@ -42,7 +42,6 @@ const (
        Hfreebsd
        Hjs
        Hlinux
-       Hnacl
        Hnetbsd
        Hopenbsd
        Hplan9
@@ -65,8 +64,6 @@ func (h *HeadType) Set(s string) error {
                *h = Hjs
        case "linux", "android":
                *h = Hlinux
-       case "nacl":
-               *h = Hnacl
        case "netbsd":
                *h = Hnetbsd
        case "openbsd":
@@ -97,8 +94,6 @@ func (h *HeadType) String() string {
                return "js"
        case Hlinux:
                return "linux"
-       case Hnacl:
-               return "nacl"
        case Hnetbsd:
                return "netbsd"
        case Hopenbsd: