all: change //go:export to //export

This is the kind that is used in Go (actually CGo) for exporting
functions. I think it's best to use //export instead of our custom
//go:export pragma, for consistency (they are equivalent in TinyGo).
Therefore I've updated all instances to the standard format (except for
two that are updated in https://github.com/tinygo-org/tinygo/pull/1024).

No smoke tests changed (when comparing the output hash), except for some
wasm tests that include DWARF debug info and tend to be flaky anyway.
This commit is contained in:
Ayke van Laethem
2020-04-04 16:42:19 +02:00
committed by Ayke
parent 46345aade6
commit cbaa58a2d9
23 changed files with 51 additions and 51 deletions
+2 -2
View File
@@ -10,12 +10,12 @@ import (
// This matches *i8 in LLVM.
type rawState uint8
//go:export llvm.coro.resume
//export llvm.coro.resume
func (s *rawState) resume()
type state struct{ *rawState }
//go:export llvm.coro.noop
//export llvm.coro.noop
func noopState() *rawState
// Resume the task until it pauses or completes.