diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2012-09-04 11:54:36 -0700 | 
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2012-09-04 11:54:36 -0700 | 
| commit | a26837c47872066b8bfb4e455fcf75fc573e862f (patch) | |
| tree | d599c4ebf2df9b66176f881e8e4c64a87475ca47 /src/rustc/lib/llvm.rs | |
| parent | 8ff18acc8221a0157d94cd714b448b6a596fad40 (diff) | |
| download | rust-a26837c47872066b8bfb4e455fcf75fc573e862f.tar.gz rust-a26837c47872066b8bfb4e455fcf75fc573e862f.zip | |
rustc: "import" -> "use"
Diffstat (limited to 'src/rustc/lib/llvm.rs')
| -rw-r--r-- | src/rustc/lib/llvm.rs | 4 | 
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; | 
