about summary refs log tree commit diff
path: root/src/comp/lib
diff options
context:
space:
mode:
authorHaitao Li <lihaitao@gmail.com>2011-11-11 00:41:42 +0800
committerBrian Anderson <banderson@mozilla.com>2011-11-10 19:19:40 -0800
commit5a7249c935d52e79db2301a6cccfd28dff9bf38e (patch)
tree843bb8cadfecccf970a3af56ea87259cc83de4a1 /src/comp/lib
parent9bc2f1800dcf97aff968478569c52204ec6d3998 (diff)
downloadrust-5a7249c935d52e79db2301a6cccfd28dff9bf38e.tar.gz
rust-5a7249c935d52e79db2301a6cccfd28dff9bf38e.zip
Cleanup unused imports
Diffstat (limited to 'src/comp/lib')
-rw-r--r--src/comp/lib/llvm.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/comp/lib/llvm.rs b/src/comp/lib/llvm.rs
index acf27fb2a81..f5b0fbeec8d 100644
--- a/src/comp/lib/llvm.rs
+++ b/src/comp/lib/llvm.rs
@@ -1,10 +1,8 @@
 import std::{vec, str, option};
 import std::str::sbuf;
 
-import llvm::{ModuleRef, ContextRef, TypeRef, TypeHandleRef, ValueRef,
-              BasicBlockRef, BuilderRef, ModuleProviderRef, MemoryBufferRef,
-              PassManagerRef, UseRef, TargetDataRef, Linkage, Attribute,
-              Visibility, CallConv, IntPredicate, RealPredicate, Opcode,
+import llvm::{TypeRef, MemoryBufferRef,
+              PassManagerRef, TargetDataRef,
               ObjectFileRef, SectionIteratorRef};
 
 type ULongLong = u64;