Skip to content

Commit 4499dc7

Browse files
committed
2 parents 02ff5aa + c36b427 commit 4499dc7

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

wllvm/as.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,17 @@
2727
"""
2828

2929
from __future__ import absolute_import
30+
3031
import sys
3132
import os
3233

3334
from subprocess import *
3435

35-
from wllvm.utils import *
36+
from .utils import *
3637

37-
from wllvm.popenwrapper import Popen
38+
from .popenwrapper import Popen
3839

39-
from wllvm.argumentlistfilter import ArgumentListFilter
40+
from .arglistfilter import ArgumentListFilter
4041

4142
import logging
4243
logging.basicConfig()

wllvm/extractor.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@
2020
that contains a section called __llvm_bc.
2121
2222
"""
23+
from __future__ import absolute_import
2324

2425
import sys
2526

26-
from extraction import *
27+
from .extraction import *
2728

2829
def main():
2930
try:

wllvm/wllvm.py

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
linked into a library or executable.
1111
"""
1212

13-
1413
import sys, os
1514

1615
from utils import getBuilder, buildObject, buildAndAttachBitcode, logging

wllvm/wllvmpp.py

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
file so that it can be found later after all of the objects are linked
88
into a library or executable.
99
"""
10-
1110
import sys, os
1211

1312
from utils import getBuilder, buildObject, buildAndAttachBitcode, logging

0 commit comments

Comments
 (0)