about summary refs log tree commit diff
path: root/src/rustc/lib/llvm.rs
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2012-09-04 11:54:36 -0700
committerPatrick Walton <pcwalton@mimiga.net>2012-09-04 11:54:36 -0700
commita26837c47872066b8bfb4e455fcf75fc573e862f (patch)
treed599c4ebf2df9b66176f881e8e4c64a87475ca47 /src/rustc/lib/llvm.rs
parent8ff18acc8221a0157d94cd714b448b6a596fad40 (diff)
downloadrust-a26837c47872066b8bfb4e455fcf75fc573e862f.tar.gz
rust-a26837c47872066b8bfb4e455fcf75fc573e862f.zip
rustc: "import" -> "use"
Diffstat (limited to 'src/rustc/lib/llvm.rs')
-rw-r--r--src/rustc/lib/llvm.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rustc/lib/llvm.rs b/src/rustc/lib/llvm.rs
index ddce3c9640e..6da8a9d57c9 100644
--- a/src/rustc/lib/llvm.rs
+++ b/src/rustc/lib/llvm.rs
@@ -1,6 +1,6 @@
-import std::map::hashmap;
+use std::map::hashmap;
 
-import libc::{c_char, c_int, c_uint, c_longlong, c_ulonglong};
+use libc::{c_char, c_int, c_uint, c_longlong, c_ulonglong};
 
 type Opcode = u32;
 type Bool = c_uint;