about summary refs log tree commit diff
path: root/src/librustc
AgeCommit message (Expand)AuthorLines
2014-10-02Remove the `_` suffix from slice methods.Nick Cameron-8/+8
2014-10-02Use slice syntax instead of slice_to, etc.Nick Cameron-22/+22
2014-10-01auto merge of #17678 : fhahn/rust/issue-17628-infinite-recursion, r=alexcrichtonbors-0/+1
2014-10-01auto merge of #17654 : gereeter/rust/no-unnecessary-cell, r=alexcrichtonbors-96/+70
2014-10-01auto merge of #17653 : kaini/rust/master, r=alexcrichtonbors-26/+37
2014-10-01Limit recursion depth for macro expansions, closes #17628Florian Hahn-0/+1
2014-10-01auto merge of #17630 : sfackler/rust/cfg-warnings, r=brsonbors-5/+4
2014-10-01auto merge of #17501 : pcwalton/rust/improve-method-lookup-autoderef, r=nikom...bors-7/+95
2014-10-01auto merge of #17584 : pcwalton/rust/range-patterns-dotdotdot, r=nick29581bors-3/+3
2014-09-30auto merge of #17634 : jakub-/rust/if_let, r=kballardbors-14/+71
2014-09-30librustc: Fix up mutability in method autoderefs if incorrect, andPatrick Walton-7/+95
2014-09-30Fix librustcSteven Fackler-5/+4
2014-09-30Temporarily remove the description for the diagnostic E0162Jakub Wieczorek-6/+2
2014-09-30Update after the fall out from the syntax::ptr changesJakub Wieczorek-2/+2
2014-09-30Update based on PR feedbackKevin Ballard-8/+25
2014-09-30Produce a better error for irrefutable `if let` patternsKevin Ballard-13/+40
2014-09-30Desugar 'if let' into the appropriate 'match'Kevin Ballard-0/+17
2014-09-30librustc: Forbid `..` in range patterns.Patrick Walton-3/+3
2014-09-30Fixes ICE when using reexported unit-like structsMichael Kainer-26/+37
2014-09-30librustc: Stop looking in metadata in type contents.Patrick Walton-7/+59
2014-09-30Removed some unnecessary RefCells from resolveJonathan S-96/+70
2014-09-30auto merge of #17563 : brson/rust/wintcbfix, r=thestingerbors-1/+1
2014-09-30Emit an error rather than ICEing for a missing built-in bound lang item.Nick Cameron-45/+81
2014-09-29rollup merge of #17621 : sfackler/new-snapAlex Crichton-1/+0
2014-09-29rollup merge of #17619 : wizeman/fix-permAlex Crichton-0/+12
2014-09-29rollup merge of #17613 : bkoropoff/issue-17593Alex Crichton-2/+2
2014-09-29rollup merge of #17598 : bkoropoff/issue-17441Alex Crichton-0/+31
2014-09-29rollup merge of #17592 : kmcallister/inline-asm-locAlex Crichton-7/+52
2014-09-29rollup merge of #17576 : kmcallister/hide-quotesAlex Crichton-1/+2
2014-09-29rollup merge of #17519 : pcwalton/unboxed-closure-move-syntaxAlex Crichton-24/+29
2014-09-29rustc: Fix permission denied error in 'ar' when lto is enabledRicardo M. Correia-0/+12
2014-09-29auto merge of #17321 : apoelstra/rust/error-on-unknown-impl, r=alexcrichtonbors-10/+71
2014-09-28Register new snapshotsSteven Fackler-1/+0
2014-09-29auto merge of #17533 : michaelwoerister/rust/function-call-locs, r=luqmanabors-71/+282
2014-09-28Reject casts to unsized types and suggest use of reference or boxBrian Koropoff-0/+31
2014-09-28Correctly populate trait impl map when checking for impl overlapsBrian Koropoff-2/+2
2014-09-28Cleanup error messages for anonymous impl for types not declared in the curre...Andrew Poelstra-10/+71
2014-09-28Keep ExpnId abstract by providing conversionsKeegan McAllister-2/+2
2014-09-28auto merge of #17532 : ahmedcharles/rust/typo, r=alexcrichtonbors-1/+1
2014-09-28auto merge of #17527 : sfackler/rust/cfg-syntax, r=alexcrichtonbors-2/+2
2014-09-27Convert cfg syntax to new systemSteven Fackler-2/+2
2014-09-27Translate inline assembly errors back to source locationsKeegan McAllister-7/+52
2014-09-26Hide the quote_*! macros when the feature gate is offKeegan McAllister-1/+2
2014-09-26librustc: Give trait methods accessible via fewer autoderefs priorityPatrick Walton-12/+2
2014-09-26rustc: Turn off split stacks on WindowsBrian Anderson-1/+1
2014-09-26librustc: Eliminate the `ref` syntax for unboxed closure capture clausesPatrick Walton-24/+29
2014-09-25debuginfo: Make sure that all calls to drop glue are associated with debug lo...Michael Woerister-71/+282
2014-09-25Fix typo, structs => fields.Ahmed Charles-1/+1
2014-09-25Remove as much of TypeContents as I can -- unfortunately, it is stillNiko Matsakis-51/+10
2014-09-25Move checking of whether fields are Sized or not into wf / trait code.Niko Matsakis-118/+91