Removing LLVM content from CommonMethods -> ConstMethods

This commit is contained in:
Denis Merigoux
2018-09-06 14:44:51 -07:00
committed by Eduard-Mihai Burtescu
parent e224f063e8
commit a1d0d4f943
25 changed files with 55 additions and 124 deletions

View File

@@ -13,7 +13,7 @@ use std::fmt::Debug;
pub trait Backend {
type Value: Debug + PartialEq;
type BasicBlock;
type Type : Debug + PartialEq;
type Type: Debug + PartialEq;
type TypeKind;
type Context;
}