Add empty .s file to allow `//go:linkname`

This was previously broken in 212917409, resulting in "missing function body"
compilation errors.

PiperOrigin-RevId: 213323695
Change-Id: I32a95b76a1c73fd731f223062ec022318b979bd4
This commit is contained in:
Tamir Duberstein 2018-09-17 13:05:57 -07:00 committed by Shentubot
parent 23258ca284
commit a452971630
1 changed files with 15 additions and 0 deletions

15
pkg/tcpip/time.s Normal file
View File

@ -0,0 +1,15 @@
// Copyright 2018 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Empty assembly file so empty func definitions work.