Skip to content
This repository was archived by the owner on Dec 14, 2023. It is now read-only.

Commit 353a1c6

Browse files
committed
Update import paths
1 parent 3f684a8 commit 353a1c6

35 files changed

+58
-53
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Build Status](https://drone.io/github.com/axw/llgo/status.png)](https://drone.io/github.com/axw/llgo/latest)
1+
[![Build Status](https://drone.io/github.com/go-llvm/llgo/status.png)](https://drone.io/github.com/go-llvm/llgo/latest)
22
# llgo
33

44
llgo is a [Go](http://golang.org) frontend for [LLVM](http://llvm.org), written in Go.
@@ -9,7 +9,7 @@ llgo is under active development, but is still considered experimental. It is no
99

1010
To install llgo, use llgo-dist:
1111

12-
go get github.com/axw/llgo/cmd/llgo-dist
12+
go get github.com/go-llvm/llgo/cmd/llgo-dist
1313
llgo-dist
1414

1515
You should have the latest version of LLVM in your $PATH (3.3 has been confirmed to be compatible). If LLVM is not in $PATH, llgo-dist also has a flag that can specified to point at the LLVM installation: `-llvm-config=<path/to/llvm-config>`.
@@ -30,8 +30,8 @@ The `llgo-build` tool accepts either Go filenames, or package names, just like `
3030

3131
First install llgo using `llgo-dist`, as described above. Then you can run the functional tests like so:
3232

33-
go test -v github.com/axw/llgo/llgo
33+
go test -v github.com/go-llvm/llgo/llgo
3434

3535
You can also run the compiler tests from gc's source tree ($GOROOT/test) by specifying the build tag `go_test`:
3636

37-
go test -v -tags go_test github.com/axw/llgo/llgo -run StandardTests
37+
go test -v -tags go_test github.com/go-llvm/llgo/llgo -run StandardTests

alg.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package llgo
77
import (
88
"code.google.com/p/go.tools/go/types"
99

10-
"github.com/axw/gollvm/llvm"
10+
"github.com/go-llvm/llvm"
1111
)
1212

1313
type AlgorithmKind int

attribute.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package llgo
77
import (
88
"code.google.com/p/go.tools/go/types"
99
"fmt"
10-
"github.com/axw/gollvm/llvm"
10+
"github.com/go-llvm/llvm"
1111
"go/ast"
1212
"strings"
1313
)

build/build_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@ package build_test
22

33
import (
44
"bytes"
5-
"github.com/axw/llgo/build"
65
"io/ioutil"
76
"strings"
87
"testing"
98
"testing/iotest"
9+
10+
"github.com/go-llvm/llgo/build"
1011
)
1112

1213
func TestLLVMIRReadCloser(t *testing.T) {

builtins.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package llgo
66

77
import (
88
"code.google.com/p/go.tools/go/types"
9-
"github.com/axw/gollvm/llvm"
9+
"github.com/go-llvm/llvm"
1010
)
1111

1212
func (c *compiler) callCap(arg *LLVMValue) *LLVMValue {

call.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package llgo
66

77
import (
88
"code.google.com/p/go.tools/go/types"
9-
"github.com/axw/gollvm/llvm"
9+
"github.com/go-llvm/llvm"
1010
)
1111

1212
// createCall emits the code for a function call,

channels.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package llgo
66

77
import (
88
"code.google.com/p/go.tools/go/types"
9-
"github.com/axw/gollvm/llvm"
9+
"github.com/go-llvm/llvm"
1010
)
1111

1212
// makeChan implements make(chantype[, size])

closures.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
package llgo
66

77
import (
8-
"github.com/axw/gollvm/llvm"
8+
"github.com/go-llvm/llvm"
99
)
1010

1111
// makeClosure creates a closure from a function pointer and

cmd/llgo-build/build.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ import (
1717
"regexp"
1818
"strings"
1919

20-
llgobuild "github.com/axw/llgo/build"
20+
llgobuild "github.com/go-llvm/llgo/build"
2121
)
2222

23-
const llgoPkgPrefix = "github.com/axw/llgo/pkg/"
23+
const llgoPkgPrefix = "github.com/go-llvm/llgo/pkg/"
2424

2525
type renamedFileInfo struct {
2626
os.FileInfo

cmd/llgo-build/main.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,14 @@ package main
77
import (
88
"flag"
99
"fmt"
10-
llgobuild "github.com/axw/llgo/build"
1110
"go/build"
1211
"io/ioutil"
1312
"log"
1413
"os"
1514
"path/filepath"
1615
"runtime"
16+
17+
llgobuild "github.com/go-llvm/llgo/build"
1718
)
1819

1920
var (

0 commit comments

Comments
 (0)