summary refs log tree commit diff
path: root/src/rustc/driver
AgeCommit message (Collapse)AuthorLines
2012-07-11Fix some version numbers.Graydon Hoare-4/+4
2012-07-09rustc: Switch over to resolve3Patrick Walton-20/+3
2012-07-09Revert "rustc: Switch over to resolve3" due to Linux failuresPatrick Walton-3/+20
This reverts commit 2c0aa257e293dde91042a8045100d9923d139a04.
2012-07-09rustc: Switch over to resolve3Patrick Walton-20/+3
2012-07-09rustc: Add some changes I missedPatrick Walton-3/+20
2012-07-09rustc: Switch to the new resolution passPatrick Walton-20/+3
2012-07-06Revert "rustc: Switch to the new resolution pass"Niko Matsakis-3/+20
This reverts commit c4af6e92fbae171c56a4e68666025725555fc9d8. Branch was burning...many, many unresolved imports.
2012-07-06rustc: Switch to the new resolution passPatrick Walton-20/+3
2012-07-04convert doc-attributes to doc-comments using ↵Gareth Daniel Smith-7/+7
./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498
2012-07-04Remove empty argument lists from do expressionsBen Striegel-1/+1
2012-07-02rustc: Implement a new resolve pass behind a compile flagPatrick Walton-84/+79
2012-07-02Mark -g as experimental (#2767)Brian Anderson-1/+1
2012-07-02Merge remote-tracking branch 'Dretch/prettydocs'Brian Anderson-1/+2
Conflicts: src/compiletest/errors.rs src/libsyntax/parse/attr.rs src/libsyntax/parse/comments.rs src/test/compile-fail/ambig_impl_unify.rs src/test/compile-fail/assign-super.rs src/test/compile-fail/bad-for-loop.rs src/test/compile-fail/bad-var-env-capture-in-block-arg.rs src/test/compile-fail/block-arg-as-stmt-with-value.rs src/test/compile-fail/borrowck-assign-comp-idx.rs src/test/compile-fail/borrowck-lend-flow.rs src/test/compile-fail/borrowck-loan-blocks-move-cc.rs src/test/compile-fail/borrowck-loan-blocks-mut-uniq.rs src/test/compile-fail/borrowck-loan-rcvr.rs src/test/compile-fail/borrowck-loan-vec-content.rs src/test/compile-fail/borrowck-mut-vec-as-imm-slice-bad.rs src/test/compile-fail/cap-clause-with-stack-closure.rs src/test/compile-fail/do1.rs src/test/compile-fail/do2.rs src/test/compile-fail/empty-vec-trailing-comma.rs src/test/compile-fail/evec-subtyping.rs src/test/compile-fail/issue-1896.rs src/test/compile-fail/issue-2149.rs src/test/compile-fail/issue-2150.rs src/test/compile-fail/issue-2487-b.rs src/test/compile-fail/kindck-implicit-close-over-mut-var.rs src/test/compile-fail/liveness-issue-2163.rs src/test/compile-fail/liveness-use-in-index-lvalue.rs src/test/compile-fail/no-reuse-move-arc.rs src/test/compile-fail/no-send-res-ports.rs src/test/compile-fail/non-const.rs src/test/compile-fail/pure-higher-order.rs src/test/compile-fail/pure-loop-body.rs src/test/compile-fail/regions-addr-of-upvar-self.rs src/test/compile-fail/regions-escape-loop-via-vec.rs src/test/compile-fail/regions-scoping.rs src/test/compile-fail/seq-args.rs src/test/compile-fail/tstate-unsat-in-called-fn-expr.rs src/test/compile-fail/tstate-unsat-in-fn-expr.rs src/test/compile-fail/vec-add.rs src/test/compile-fail/vec-concat-bug.rs src/test/compile-fail/vector-no-ann.rs
2012-07-01Convert to new closure syntaxBrian Anderson-82/+101
2012-06-30Eliminate usages of old sugared call syntaxBrian Anderson-4/+4
2012-06-30initial draft of fix for issue #2498:Gareth Daniel Smith-1/+2
1. make /// ... and //! ... and /** ... */ and /*! ... */ into sugar for #[doc = ...] attributes. 2. add a script in etc/ to help converting doc-attributes to doc-comments 3. add some functions to core::str to help with (1)
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-31/+29
2012-06-28Merge branch 'master' of github.com:mozilla/rust into incomingEric Holk-5/+5
2012-06-28Don't use literal info from the original source when pretty printing ↵Michael Sullivan-8/+8
expanded ASTs.
2012-06-28Replaced almost all vector+ in rustc (#2719)Eric Holk-5/+5
Didn't update shape because the changes were causing segfaults.
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-27/+27
2012-06-22Change resources to classes in libstd and rustcTim Chevalier-2/+4
2012-06-21Tag all remaining FIXMEs with bugs. Install rule in tidy script to enforce this.Graydon Hoare-13/+13
2012-06-20Remove bind. Issue #2189Brian Anderson-48/+60
2012-06-19rustc: Add a temporary option to not link to the runtimeBrian Anderson-2/+6
2012-06-17Issue #2633: remove last_use entries that are subject to a loanNiko Matsakis-1/+2
2012-06-15Add the interner to parse_sess.Paul Stansifer-10/+4
2012-06-14Remove a workaroundTim Chevalier-2/+2
2012-06-13Box AST identsBrian Anderson-12/+12
2012-06-08remove alias analysis and replace with borrowckNiko Matsakis-21/+4
This reverts commit 7ef825bb607c4e934c92bd0b73ecbc4c24f3286b.
2012-06-07Revert "remove alias analysis and replace with borrowck"Brian Anderson-4/+21
18s perf regression compiling rustc with opts This reverts commit 7f6ee0ce0df8af4c21b065cb49b95079ae643f77.
2012-06-07remove alias analysis and replace with borrowckNiko Matsakis-21/+4
cc #2540
2012-06-06rustc: Enable #[cfg(windows)] and #[cfg(unix)]Brian Anderson-0/+1
2012-06-06rustc: Add 'target_family' to default configurationBrian Anderson-0/+1
2012-06-06Revert "Revert "Merge pull request #2516 from mozilla/incoming" due to failures"Tim Chevalier-3/+4
This reverts commit 9fae95860de510f6874810cf43efb83f101246ef.
2012-06-04Make vecs implicitly copyable for all of our projects.Michael Sullivan-0/+1
2012-06-04Heavily rework lint infrastructure. Split it into two passes: one that ↵Michael Sullivan-6/+26
builds the table and one that does the checks. Build the table early and make session know about it fo reasy use.
2012-06-04Make how lint handles unknown warn directives configurable by lint (default ↵Michael Sullivan-2/+4
to warn). Closes #2480.
2012-05-31Have lint build up a table of the warning settings on a per item basis for ↵Michael Sullivan-2/+3
later use.
2012-05-31Time lint in the driver like every other pass, instead of in lint.Michael Sullivan-1/+2
2012-05-31Rename librustsyntax to libsyntaxKevin Cantu-1/+1
Per issue #2418.
2012-05-29rustc: Move filesearch into metadata modBrian Anderson-3/+3
It's not that related to metadata, but metadata needs it and it will probably be useful for doing dynamic loading.
2012-05-25Get rid of many implicit copies as a preliminary to Issue #2448.Michael Sullivan-1/+1
2012-05-25replace last_use with liveness infoNiko Matsakis-8/+5
2012-05-24remove dead assignmentsNiko Matsakis-2/+2
2012-05-24new liveness pass to supercede last_use / initednessNiko Matsakis-0/+3
2012-05-24fix classes and parameterized ifaces; remove needless self checkNiko Matsakis-2/+0
ref #1726, #2434
2012-05-22rustc: Eliminate metadata's dependency on sessionBrian Anderson-1/+5
2012-05-22rustc: Eliminate some session deps from metadata::loaderBrian Anderson-1/+13
2012-05-22syntax: Add diagnostic::expectBrian Anderson-4/+1