forked from M-Labs/artiq
1
0
Fork 0

Rename package py2llvm to compiler.

Since the package implements a typechecker along with a code generator,
and the typechecker will be run before or together with transformations,
this name is more descriptive.
This commit is contained in:
whitequark 2015-06-29 20:12:09 +03:00
parent f430bf3f63
commit 6bf95397d7
23 changed files with 19 additions and 19 deletions

View File

@ -639,7 +639,7 @@ class Inferencer(algorithm.Visitor):
if types.is_tuple(left.type) or types.is_tuple(right.type):
tuple_, other = self._order_by_pred(types.is_tuple, left, right)
diag = diagnostic.Diagnostic("error",
"py2llvm does not support passing tuples to '*'", {},
"passing tuples to '*' is not supported", {},
op.loc, [tuple_.loc])
self.engine.process(diag)
return

View File

@ -1,4 +1,4 @@
# RUN: %python -m artiq.py2llvm.typing %s >%t
# RUN: %python -m artiq.compiler.typing %s >%t
# RUN: OutputCheck %s --file-to-check=%t
# CHECK-L: bool:<constructor bool>():bool

View File

@ -1,4 +1,4 @@
# RUN: %python -m artiq.py2llvm.typing %s >%t
# RUN: %python -m artiq.compiler.typing %s >%t
# RUN: OutputCheck %s --file-to-check=%t
1 | 2

View File

@ -1,4 +1,4 @@
# RUN: %python -m artiq.py2llvm.typing +diag %s >%t
# RUN: %python -m artiq.compiler.typing +diag %s >%t
# RUN: OutputCheck %s --file-to-check=%t
a = 1

View File

@ -1,4 +1,4 @@
# RUN: %python -m artiq.py2llvm.typing +diag %s >%t
# RUN: %python -m artiq.compiler.typing +diag %s >%t
# RUN: OutputCheck %s --file-to-check=%t
# CHECK-L: ${LINE:+1}: error: cannot call this expression of type int

View File

@ -1,4 +1,4 @@
# RUN: %python -m artiq.py2llvm.typing +diag %s >%t
# RUN: %python -m artiq.compiler.typing +diag %s >%t
# RUN: OutputCheck %s --file-to-check=%t
# CHECK-L: ${LINE:+1}: error: expected '<<' operand to be of integer type, not float
@ -17,7 +17,7 @@
# CHECK-L: ${LINE:+1}: note: int(width='b), which cannot be added to a tuple
(1,) + 2
# CHECK-L: ${LINE:+1}: error: py2llvm does not support passing tuples to '*'
# CHECK-L: ${LINE:+1}: error: passing tuples to '*' is not supported
(1,) * 2
# CHECK-L: ${LINE:+3}: error: expected '*' operands to be a list and an integer in this context

View File

@ -1,4 +1,4 @@
# RUN: %python -m artiq.py2llvm.typing +diag %s >%t
# RUN: %python -m artiq.compiler.typing +diag %s >%t
# RUN: OutputCheck %s --file-to-check=%t
# CHECK-L: ${LINE:+1}: error: return statement outside of a function

View File

@ -1,4 +1,4 @@
# RUN: %python -m artiq.py2llvm.typing +diag %s >%t
# RUN: %python -m artiq.compiler.typing +diag %s >%t
# RUN: OutputCheck %s --file-to-check=%t
try:

View File

@ -1,4 +1,4 @@
# RUN: %python -m artiq.py2llvm.typing +diag %s >%t
# RUN: %python -m artiq.compiler.typing +diag %s >%t
# RUN: OutputCheck %s --file-to-check=%t
# CHECK-L: ${LINE:+1}: error: type int(width='a) is not iterable

View File

@ -1,4 +1,4 @@
# RUN: %python -m artiq.py2llvm.typing +diag %s >%t
# RUN: %python -m artiq.compiler.typing +diag %s >%t
# RUN: OutputCheck %s --file-to-check=%t
# CHECK-L: ${LINE:+1}: fatal: name 'x' is not bound to anything

View File

@ -1,4 +1,4 @@
# RUN: %python -m artiq.py2llvm.typing +diag %s >%t
# RUN: %python -m artiq.compiler.typing +diag %s >%t
# RUN: OutputCheck %s --file-to-check=%t
x = 1

View File

@ -1,4 +1,4 @@
# RUN: %python -m artiq.py2llvm.typing +diag %s >%t
# RUN: %python -m artiq.compiler.typing +diag %s >%t
# RUN: OutputCheck %s --file-to-check=%t
# CHECK-L: ${LINE:+2}: error: cannot unify int(width='a) with NoneType

View File

@ -1,4 +1,4 @@
# RUN: %python -m artiq.py2llvm.typing +diag %s >%t
# RUN: %python -m artiq.compiler.typing +diag %s >%t
# RUN: OutputCheck %s --file-to-check=%t
a = 1

View File

@ -1,4 +1,4 @@
# RUN: %python -m artiq.py2llvm.typing %s >%t
# RUN: %python -m artiq.compiler.typing %s >%t
# RUN: OutputCheck %s --file-to-check=%t
# CHECK-L: Exception:<constructor Exception>

View File

@ -1,4 +1,4 @@
# RUN: %python -m artiq.py2llvm.typing %s >%t
# RUN: %python -m artiq.compiler.typing %s >%t
def _gcd(a, b):
if a < 0:

View File

@ -1,4 +1,4 @@
# RUN: %python -m artiq.py2llvm.typing %s >%t
# RUN: %python -m artiq.compiler.typing %s >%t
# RUN: OutputCheck %s --file-to-check=%t
# CHECK-L: x:<function len>

View File

@ -1,4 +1,4 @@
# RUN: %python -m artiq.py2llvm.typing %s >%t
# RUN: %python -m artiq.compiler.typing %s >%t
# RUN: OutputCheck %s --file-to-check=%t
def f():

View File

@ -1,4 +1,4 @@
# RUN: %python -m artiq.py2llvm.typing %s >%t
# RUN: %python -m artiq.compiler.typing %s >%t
# RUN: OutputCheck %s --file-to-check=%t
a = 1