Skip to content

Commit b0b1615

Browse files
committedFeb 2, 2018
Correctly tag gc rather than !gccgo
1 parent 176e84a commit b0b1615

6 files changed

+6
-6
lines changed
 

‎goid_go1.5_amd64.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// for names of contributors.
1515

1616
// +build amd64 amd64p32
17-
// +build !gccgo,go1.5
17+
// +build gc,go1.5
1818

1919
package goid
2020

‎goid_go1.5_amd64.s

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// Assembly to mimic runtime.getg.
1717

1818
// +build amd64 amd64p32
19-
// +build !gccgo,go1.5
19+
// +build gc,go1.5
2020

2121
#include "go_asm.h"
2222
#include "textflag.h"

‎goid_go1.5_arm.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// for names of contributors.
1515

1616
// +build arm
17-
// +build !gccgo,go1.5
17+
// +build gc,go1.5
1818

1919
package goid
2020

‎goid_go1.5_arm.s

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// This should work on arm64 as well, but it hasn't been tested.
1818

1919
// +build arm
20-
// +build !gccgo,go1.5
20+
// +build gc,go1.5
2121

2222
#include "textflag.h"
2323

‎runtime_go1.6.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// +build !gccgo,go1.6,!go1.9
1+
// +build gc,go1.6,!go1.9
22

33
package goid
44

‎runtime_go1.9.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// +build !gccgo,go1.9
1+
// +build gc,go1.9
22

33
package goid
44

0 commit comments

Comments
 (0)
Please sign in to comment.