Move TypeVar and TypeSet into their own Python package.

These classes are not very entangled with the rest of __init__, and
we'll be expanding them a bit.
This commit is contained in:
Jakob Stoklund Olesen
2016-09-27 10:53:53 -07:00
parent 6f243ab35d
commit 8cbaacac48
4 changed files with 102 additions and 95 deletions

View File

@@ -5,7 +5,8 @@ This module defines the basic Cretonne instruction set that all targets
support.
"""
from __future__ import absolute_import
from . import TypeVar, Operand, Instruction, InstructionGroup, variable_args
from . import Operand, Instruction, InstructionGroup, variable_args
from .typevar import TypeVar
from .types import i8, f32, f64, b1
from .immediates import imm64, uimm8, ieee32, ieee64, immvector, intcc, floatcc
from . import entities