jiri-profile-v23: Use Go 1.4.3 and not 1.4.2 for bootstrapping.

For targets where the release version of Go 1.6 is not currently
supported (specifically --target=amd64-ios and other *-ios ones),
the Go profile builds go1.4.2 from sources and then builds the
later version of Go from that. This breaks with XCode 7.3 on
OS X because it runs into https://github.com/golang/go/issues/12345

As a quick fix, use 1.4.3 for bootstrapping.
A more appropriate but involved fix might be to just use the release
Go 1.6 as the bootstrapping compiler for the patched Go 1.6.

Change-Id: Iefac907c0fc33a2505ded7e2f8ed18e6d54df4b3
diff --git a/jiri-profile-v23/go_profile/go.go b/jiri-profile-v23/go_profile/go.go
index bed4eb2..b7af619 100644
--- a/jiri-profile-v23/go_profile/go.go
+++ b/jiri-profile-v23/go_profile/go.go
@@ -336,7 +336,7 @@
 		}
 		defer jirix.NewSeq().RemoveAll(tmpDir)
 
-		name := "go1.4.2.src.tar.gz"
+		name := "go1.4.3.src.tar.gz"
 		remote, local := "https://storage.googleapis.com/golang/"+name, filepath.Join(tmpDir, name)
 		parentDir := filepath.Dir(go14Dir)
 		goSrcDir := filepath.Join(go14Dir, "src")