Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

irutil: add instruction and terminator operand use-tracking and value update API #1

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open
2 changes: 2 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ module github.com/llir/irutil
go 1.12

require github.com/llir/llvm v0.3.0-pre7.0.20191220191840-fc6d0e8d9bc6

replace github.com/llir/llvm => github.com/mewpull/llvm v0.3.0-pre7.0.20191221041541-3f58af5a0014
mewmew marked this conversation as resolved.
Show resolved Hide resolved
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
github.com/llir/ll v0.0.0-20191205054844-50f4b743547b h1:Hc7BLGoz4hbN+8mb+JhZeYS+5mE8l+L+KWp7cJVeNrY=
github.com/llir/ll v0.0.0-20191205054844-50f4b743547b/go.mod h1:8W5HJz80PitAyPZUpOcljQxTu6LD5YKW1URTo+OjVoc=
github.com/llir/llvm v0.3.0-pre7.0.20191220191840-fc6d0e8d9bc6 h1:bwZWin1Q/mernGFKoNOKRysPU10+rgylUxLeJR5AOJg=
github.com/llir/llvm v0.3.0-pre7.0.20191220191840-fc6d0e8d9bc6/go.mod h1:w6wEy+jHlAsmT+yQGYOvL1TO+JEDlzt+NnsYegCunuo=
github.com/mewkiz/pkg v0.0.0-20190919212034-518ade7978e2 h1:EyTNMdePWaoWsRSGQnXiSoQu0r6RS1eA557AwJhlzHU=
github.com/mewkiz/pkg v0.0.0-20190919212034-518ade7978e2/go.mod h1:3E2FUC/qYUfM8+r9zAwpeHJzqRVVMIYnpzD/clwWxyA=
github.com/mewmew/float v0.0.0-20191218075745-e26b3d092977 h1:6+YqyNydbRNcd0azoFfSM36F1O5nbc0M3OzKqsT8YCA=
github.com/mewmew/float v0.0.0-20191218075745-e26b3d092977/go.mod h1:O+xb+8ycBNHzJicFVs7GRWtruD4tVZI0huVnw5TM01E=
github.com/mewpull/llvm v0.3.0-pre7.0.20191221041541-3f58af5a0014 h1:STFmB7NoMfxXapksFUH+EwOTcruUQ+jaeFxZU+KiXL4=
github.com/mewpull/llvm v0.3.0-pre7.0.20191221041541-3f58af5a0014/go.mod h1:w6wEy+jHlAsmT+yQGYOvL1TO+JEDlzt+NnsYegCunuo=
github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I=
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
Expand Down
Loading