Removed "Variable" parametricity for SSABuilder and related code too.

This commit is contained in:
Dan Gohman
2018-08-17 12:13:34 -07:00
parent ad170c7412
commit 37272f5ceb
2 changed files with 20 additions and 28 deletions

View File

@@ -23,7 +23,7 @@ use variable::Variable;
/// implement `EntityRef`. For frontends that don't have an obvious type to
/// use here, `variable::Variable` can be used.
pub struct FunctionBuilderContext {
ssa: SSABuilder<Variable>,
ssa: SSABuilder,
ebbs: EntityMap<Ebb, EbbData>,
types: EntityMap<Variable, Type>,
}