diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2019-02-26 14:46:56 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2019-02-26 14:46:56 +0000 |
commit | 5c98b419f75a77545abcccb10743829704a4e5d5 (patch) | |
tree | 634fd037ea6eb647a0d4a7d1d5949ffa9ef9fb5b /libgo/go | |
parent | c7f7c313c0da09232ced316ebb9806bd0f70405c (diff) | |
download | gcc-5c98b419f75a77545abcccb10743829704a4e5d5.zip gcc-5c98b419f75a77545abcccb10743829704a4e5d5.tar.gz gcc-5c98b419f75a77545abcccb10743829704a4e5d5.tar.bz2 |
re PR go/86535 (FreeBSD/PowerPC64 - Building Go Frontend support for gcc 7.3.0 fails)
PR go/86535
runtime: always declare nanotime in Go
For libgo it's always defined in C.
Updates https://gcc.gnu.org/PR86535
Reviewed-on: https://go-review.googlesource.com/c/163743
From-SVN: r269214
Diffstat (limited to 'libgo/go')
-rw-r--r-- | libgo/go/runtime/stubs3.go | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libgo/go/runtime/stubs3.go b/libgo/go/runtime/stubs3.go index d3e331a..d339787 100644 --- a/libgo/go/runtime/stubs3.go +++ b/libgo/go/runtime/stubs3.go @@ -2,13 +2,6 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build !plan9 -// +build !windows -// +build !nacl -// +build !freebsd -// +build !darwin -// +build !aix - package runtime func nanotime() int64 |