diff options
| author | Brian Anderson <banderson@mozilla.com> | 2011-06-27 14:18:32 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2011-06-27 16:30:27 -0700 |
| commit | ba5c7a570d1bc6f28e7a2f4eb5cfd50b7c19f374 (patch) | |
| tree | 78bb67f83876f83a65464b82ae0ead676e080080 /src/comp/driver | |
| parent | d4a5487e1c1ab641f146e2ab83409bc9b5a4ec51 (diff) | |
| download | rust-ba5c7a570d1bc6f28e7a2f4eb5cfd50b7c19f374.tar.gz rust-ba5c7a570d1bc6f28e7a2f4eb5cfd50b7c19f374.zip | |
Rename middle::metadata to metadata::cwriter. Move creader to metadata
Preparation for a lot more metadata refactoring
Diffstat (limited to 'src/comp/driver')
| -rw-r--r-- | src/comp/driver/rustc.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/comp/driver/rustc.rs b/src/comp/driver/rustc.rs index 9a924b7b913..bed3ba3492c 100644 --- a/src/comp/driver/rustc.rs +++ b/src/comp/driver/rustc.rs @@ -1,7 +1,7 @@ // -*- rust -*- -import front::creader; +import metadata::creader; import front::parser; import front::token; import front::eval; @@ -349,7 +349,7 @@ fn main(vec[str] args) { case (none[pp_mode]) {/* continue */ } } if (ls) { - front::creader::list_file_metadata(ifile, std::io::stdout()); + metadata::creader::list_file_metadata(ifile, std::io::stdout()); ret; } alt (output_file) { |
