aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Switch rustboot from element-wise copying to take+drop+memcpy. Un-XFAIL ↵Graydon Hoare2011-03-111-1/+0
| | | | size-and-align.rs for rustc.
* rustc: Un-XFAIL generic-iter-frame.rsPatrick Walton2011-03-111-1/+0
|
* Un-XFAIL test/run-pass/foreach-nested.rs and test/run-pass/foreach-nested-2.rsPatrick Walton2011-03-111-2/+0
|
* rustc: Populate the upvar environment when calling iterator bodies. Un-XFAIL ↵Patrick Walton2011-03-111-1/+0
| | | | test/run-pass/iter-range.rs.
* Help extinguish fires.Graydon Hoare2011-03-101-1/+1
|
* Move the glue code to a .o file. This reduces how much asm we printGraydon Hoare2011-03-101-14/+15
| | | | | | | | | in each "translation unit". Part of it is not repetitive and should probably be moved to a .ll file, but for now we autogen all of it. (Modified somewhat by graydon while integrating).
* rustc: Use the generic info from the item in bind thunks just as calls do. ↵Patrick Walton2011-03-101-1/+0
| | | | Un-XFAIL drop-parametric-closure-with-bound-box.rs.
* rustc: Fix off-by-one error and logic error regarding type parameters in the ↵Patrick Walton2011-03-101-1/+0
| | | | translation of bind expressions. Un-XFAIL bind-obj-ctor.rs.
* Add failing test for tag-leaking case.Graydon Hoare2011-03-101-0/+1
|
* rustc: Run cleanups on while expressions' condition blocks. Un-XFAIL ↵Patrick Walton2011-03-101-1/+0
| | | | while-prelude-drop.rs.
* Implement deep structural comparison through boxes and sequences.Graydon Hoare2011-03-091-0/+2
|
* Un-XFAIL a couple export-related tests.Graydon Hoare2011-03-091-2/+0
|
* rustc: Have tag patterns use the type parameter information from the ↵Patrick Walton2011-03-091-1/+0
| | | | typechecker instead of trying to deduce it in trans. Un-XFAIL test/run-pass/generic-tag-values.rs.
* rustc: Make tag pattern translation generic-aware. Un-XFAIL generic-tag-alt.rs.Patrick Walton2011-03-091-1/+0
|
* rustc: Typecheck the base part of record extension expressions. Un-XFAIL ↵Patrick Walton2011-03-081-1/+0
| | | | rec-extend.rs.
* Un-XFAIL obj-return-polytypes.rsGraydon Hoare2011-03-081-1/+0
|
* rustc: Have trans get the type parameters from the annotation instead of ↵Patrick Walton2011-03-081-1/+0
| | | | trying to deduce them itself. Un-XFAIL generic-fn-twice.rs.
* Fix generic-bind support for bound aliases and generics.Graydon Hoare2011-03-081-0/+1
|
* rustc: Re-XFAIL rec-extend.rs. The typechecker never assigned the path expr ↵Patrick Walton2011-03-081-0/+1
| | | | a type.
* Revert "Move the glue asm code to a .o file. This reduces how much asm we print"Graydon Hoare2011-03-081-19/+4
| | | | This reverts commit 55c80e763bfd850682b3217fcfc5cdb516eafae0.
* Move the glue asm code to a .o file. This reduces how much asm we printRafael Ávila de Espíndola2011-03-081-4/+19
| | | | in each "translation unit".
* rustc: Cast dynamically-sized tags in iter_structural_ty_full() to opaque ↵Patrick Walton2011-03-071-1/+0
| | | | tag types. Un-XFAIL generic-recursive-tag.rs.
* rustc: Cast the LLVM representations of tag types when constructing boxes. ↵Patrick Walton2011-03-071-1/+0
| | | | Un-XFAIL list.rs.
* rustc: Truncate or zero-extend indexes appropriately. Un-XFAIL ↵Patrick Walton2011-03-071-1/+0
| | | | integral-indexing.rs.
* Modernize test/run-pass/generic-recursive-tag.rs. Un-XFAIL it in rustboot.Patrick Walton2011-03-071-1/+0
|
* Un-XFAIL 5 more tests that pass lately.Graydon Hoare2011-03-071-5/+0
|
* rustc: Un-XFAIL box-unbox.rsPatrick Walton2011-03-071-1/+0
|
* Un-XFAIL str-concat.rs.Graydon Hoare2011-03-071-1/+0
|
* rustc: Use copy_ty() when initializing N-ary tag variants. Un-XFAIL ↵Patrick Walton2011-03-041-2/+1
| | | | generic-tag.rs.
* Build empty wrappers. This lets us compile hello world, but so far itRafael Ávila de Espíndola2011-03-041-1/+0
| | | | just returns 0.
* Rewrite rustboot's flow-graph wiring passes to be less awful. Add test for ↵Graydon Hoare2011-03-031-0/+1
| | | | nested control-flow constructs.
* Turn on Valgrind for MacPatrick Walton2011-03-031-14/+7
|
* Implement structured compare for rec, tup, tag. Un-XFAIL structured-compare.rs.Graydon Hoare2011-03-011-1/+0
|
* Declare wrappers to the native functions and use those to createRafael Ávila de Espíndola2011-02-281-0/+1
| | | | | | | the fn/closure pairs. Disable native2.rs for now as we are not yet defining the wrappers and it fails to link.
* Disable test that is failing on valgrind.Rafael Ávila de Espíndola2011-02-251-1/+2
|
* rustc: Perform type parameter substitutions when emitting glue for generic ↵Patrick Walton2011-02-241-1/+0
| | | | tags. Un-XFAIL generic-tag.rs.
* Cast more aggressively to the callee type when calling generic functions. ↵Patrick Walton2011-02-241-0/+1
| | | | Add a test-case for this, and XFAIL it in rustboot.
* Revert "Cast more aggressively to the callee type when calling generic ↵Patrick Walton2011-02-241-1/+0
| | | | | | functions. Add a test-case for this, and XFAIL it in rustboot." due to test failures This reverts commit 0a65283c5eeae0b98fff7d213dbaad59889e677e.
* Cast more aggressively to the callee type when calling generic functions. ↵Patrick Walton2011-02-241-0/+1
| | | | Add a test-case for this, and XFAIL it in rustboot.
* Restore working rustc run-pass testsBrian Anderson2011-02-241-1/+1
|
* Invert test/run-pass/ for rustcPatrick Walton2011-02-231-113/+104
|
* Implement type descriptor binding. Un-XFAIL test/run-pass/generic-bind.rs.Patrick Walton2011-02-231-0/+1
|
* Teach rustc about reserved keywordsBrian Anderson2011-02-221-0/+7
|
* Un-XFAIL argv.rs and command-line-args.rs.Graydon Hoare2011-02-221-0/+2
|
* Find main functions buried within modules. Un-XFAIL import.rs.Graydon Hoare2011-02-211-0/+1
|
* Implement expr_put. Un-XFAIL foreach-simple.rs; iters w/o env access work.Graydon Hoare2011-02-181-0/+1
|
* Un-XFAIL mutable-vec-drop.rs.Graydon Hoare2011-02-161-0/+1
|
* Add a more specialized decl_native_fn_and_pair. Native functions now haveRafael Avila de Espindola2011-02-161-0/+1
| | | | the right name.
* Add missing case to ty_to_str.Rafael Avila de Espindola2011-02-161-1/+0
| | | | | Disable test that now fails because we produce undefined references to the native functions.
* Translate record extension.Graydon Hoare2011-02-151-0/+1
|