forked from https://golang.org/cl/20434 - added app/internal/callfn package update. - changed hashes.go because -for some reason- the generated hashes don't match. - build_androidapp.go had to be changed to deal with openal package. Fixes golang/go#10743 Change-Id: Iaa3f55d80c5fd184338d27832dc5c90cb772bd6a Reviewed-on: https://go-review.googlesource.com/20707 Reviewed-by: David Crawshaw <crawshaw@golang.org> Reviewed-by: Elias Naur <elias.naur@gmail.com>
12 lines
261 B
ArmAsm
12 lines
261 B
ArmAsm
// Copyright 2016 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.
|
|
|
|
#include "textflag.h"
|
|
#include "funcdata.h"
|
|
|
|
TEXT ·CallFn(SB),$0-8
|
|
MOVD fn+0(FP), R0
|
|
BL (R0)
|
|
RET
|