From f7be77e5b61706b6264367c43b78a9a4a93f8f3a Mon Sep 17 00:00:00 2001 From: Michael Hudson-Doyle Date: Wed, 15 Apr 2015 15:18:00 +0200 Subject: [PATCH] cmd/dist: fix bootstrapping with gccgo on 386 We forgot to add the !gccgo tag to cpuid_386.s. Change-Id: I2de2ed92ac9686c9365cb37cd29121fa98c2bf37 Reviewed-on: https://go-review.googlesource.com/8960 Reviewed-by: Dave Cheney Reviewed-by: Ian Lance Taylor --- src/cmd/dist/cpuid_386.s | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cmd/dist/cpuid_386.s b/src/cmd/dist/cpuid_386.s index 853824a1bc..ed4fb523d7 100644 --- a/src/cmd/dist/cpuid_386.s +++ b/src/cmd/dist/cpuid_386.s @@ -2,6 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// +build !gccgo + TEXT ·cpuid(SB),$0-8 MOVL ax+4(FP), AX CPUID -- 2.48.1