about summary refs log tree commit diff
path: root/src/librustc_codegen_llvm/interfaces/builder.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/librustc_codegen_llvm/interfaces/builder.rs')
-rw-r--r--src/librustc_codegen_llvm/interfaces/builder.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/librustc_codegen_llvm/interfaces/builder.rs b/src/librustc_codegen_llvm/interfaces/builder.rs
index 867e91ff192..fc089bfc83e 100644
--- a/src/librustc_codegen_llvm/interfaces/builder.rs
+++ b/src/librustc_codegen_llvm/interfaces/builder.rs
@@ -23,13 +23,11 @@ use std::ops::Range;
 use syntax::ast::AsmDialect;
 
 
-
 pub trait BuilderMethods<'a, 'tcx: 'a>: Backend {
-    type CodegenCx: TypeMethods + ConstMethods + Backend<
+    type CodegenCx: 'a + TypeMethods + ConstMethods + Backend<
         Value = Self::Value,
         BasicBlock = Self::BasicBlock,
         Type = Self::Type,
-        TypeKind = Self::TypeKind,
         Context = Self::Context,
     >;