Skip to content

Commit 1db9a16

Browse files
committed
all: go fmt
The import path changes changed the order of imports, but no `go fmt` was run before the commit. Oops...
1 parent 19b4476 commit 1db9a16

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

compiler/calls.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package compiler
22

33
import (
4-
"tinygo.org/x/go-llvm"
54
"golang.org/x/tools/go/ssa"
5+
"tinygo.org/x/go-llvm"
66
)
77

88
// For a description of the calling convention in prose, see:

compiler/channel.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ package compiler
66
import (
77
"go/types"
88

9-
"tinygo.org/x/go-llvm"
109
"golang.org/x/tools/go/ssa"
10+
"tinygo.org/x/go-llvm"
1111
)
1212

1313
// emitMakeChan returns a new channel value for the given channel type.

compiler/compiler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ import (
1414
"strconv"
1515
"strings"
1616

17-
"tinygo.org/x/go-llvm"
1817
"github.com/aykevl/tinygo/ir"
1918
"github.com/aykevl/tinygo/loader"
2019
"golang.org/x/tools/go/ssa"
20+
"tinygo.org/x/go-llvm"
2121
)
2222

2323
func init() {

compiler/defer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ package compiler
1414
// frames.
1515

1616
import (
17-
"tinygo.org/x/go-llvm"
1817
"github.com/aykevl/tinygo/ir"
1918
"golang.org/x/tools/go/ssa"
19+
"tinygo.org/x/go-llvm"
2020
)
2121

2222
// deferInitFunc sets up this function for future deferred calls. It must be

compiler/interface.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import (
99
"go/token"
1010
"go/types"
1111

12-
"tinygo.org/x/go-llvm"
1312
"github.com/aykevl/tinygo/ir"
1413
"golang.org/x/tools/go/ssa"
14+
"tinygo.org/x/go-llvm"
1515
)
1616

1717
// parseMakeInterface emits the LLVM IR for the *ssa.MakeInterface instruction.

ir/ir.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
"sort"
88
"strings"
99

10-
"tinygo.org/x/go-llvm"
1110
"github.com/aykevl/tinygo/loader"
1211
"golang.org/x/tools/go/ssa"
12+
"tinygo.org/x/go-llvm"
1313
)
1414

1515
// This file provides a wrapper around go/ssa values and adds extra

0 commit comments

Comments
 (0)