aboutsummaryrefslogtreecommitdiffhomepage
path: root/compiler/calls.go
diff options
context:
space:
mode:
authorAyke van Laethem <[email protected]>2019-01-31 16:20:38 +0100
committerAyke van Laethem <[email protected]>2019-01-31 16:22:05 +0100
commit1db9a162da6c53709e7b6c53e855d57afa4efbaf (patch)
treeabafaaf4c9d39460ae74edf1668470ccbb93bb10 /compiler/calls.go
parent19b4476cbbdb5fd43491ea11a94df12c4507e2a0 (diff)
downloadtinygo-1db9a162da6c53709e7b6c53e855d57afa4efbaf.tar.gz
tinygo-1db9a162da6c53709e7b6c53e855d57afa4efbaf.zip
all: go fmt
The import path changes changed the order of imports, but no `go fmt` was run before the commit. Oops...
Diffstat (limited to 'compiler/calls.go')
-rw-r--r--compiler/calls.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/calls.go b/compiler/calls.go
index 0fefdece3..2ac293ba1 100644
--- a/compiler/calls.go
+++ b/compiler/calls.go
@@ -1,8 +1,8 @@
package compiler
import (
- "tinygo.org/x/go-llvm"
"golang.org/x/tools/go/ssa"
+ "tinygo.org/x/go-llvm"
)
// For a description of the calling convention in prose, see: