aboutsummaryrefslogtreecommitdiff
path: root/src/comp/driver/rustc.rs
diff options
context:
space:
mode:
authorPatrick Walton <[email protected]>2011-03-15 17:33:05 -0700
committerPatrick Walton <[email protected]>2011-03-15 17:33:05 -0700
commit71b6e602c54f78dc2f8f33de2d74b40879316165 (patch)
tree87d92ce397c471e3046868b38a40ed67a69ca9f3 /src/comp/driver/rustc.rs
parentRevert "Change the numbering of upcall functions. upcall_0 now calls a functi... (diff)
downloadrust-71b6e602c54f78dc2f8f33de2d74b40879316165.tar.xz
rust-71b6e602c54f78dc2f8f33de2d74b40879316165.zip
rustc: Add an annotation for the crate definition to view_item_use
Diffstat (limited to 'src/comp/driver/rustc.rs')
-rw-r--r--src/comp/driver/rustc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/driver/rustc.rs b/src/comp/driver/rustc.rs
index ed03f1d2..312166c4 100644
--- a/src/comp/driver/rustc.rs
+++ b/src/comp/driver/rustc.rs
@@ -59,7 +59,7 @@ impure fn compile_input(session.session sess,
auto def = tup(0, 0);
auto p = parser.new_parser(sess, env, def, input);
auto crate = parse_input(sess, p, input);
- crate = creader.read_crates(sess, crate);
+ crate = creader.read_crates(sess, crate, library_search_paths);
crate = resolve.resolve_crate(sess, crate);
crate = typeck.check_crate(sess, crate);
trans.trans_crate(sess, crate, output, shared);