mirror of
https://github.com/golang/go
synced 2024-11-08 11:16:19 -07:00
3a369a0f59
so that our release note can reference a simple command to check if the processor implements ARMv6K or not. Updates #17082. Change-Id: I9ca52051e5517394a7cd6b778fb822c3ee435f84 Reviewed-on: https://go-review.googlesource.com/33686 Run-TryBot: Minux Ma <minux@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
17 lines
313 B
ArmAsm
17 lines
313 B
ArmAsm
// Copyright 2015 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build !arm,gc
|
|
|
|
#include "textflag.h"
|
|
|
|
TEXT ·useVFPv1(SB),NOSPLIT,$0
|
|
RET
|
|
|
|
TEXT ·useVFPv3(SB),NOSPLIT,$0
|
|
RET
|
|
|
|
TEXT ·useARMv6K(SB),NOSPLIT,$0
|
|
RET
|