Generalized some base.rs methods

This commit is contained in:
Denis Merigoux
2018-09-07 13:25:50 -07:00
committed by Eduard-Mihai Burtescu
parent c487b825b0
commit 0514c7b1b2
9 changed files with 99 additions and 50 deletions

View File

@@ -11,9 +11,8 @@
use std::fmt::Debug;
pub trait Backend {
type Value: Debug + PartialEq;
type Value: Debug + PartialEq + Copy;
type BasicBlock;
type Type: Debug + PartialEq;
type TypeKind;
type Type: Debug + PartialEq + Copy;
type Context;
}