| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-05-03 | add gitattributes and fix whitespace issues | Daniel Micay | -1/+1 | |
| 2013-04-29 | librustc: Rename `reinterpret_cast` to `transmute_copy` and remove the intrinsic | Patrick Walton | -5/+5 | |
| 2013-04-29 | librustc: Remove `ptr::addr_of`. | Patrick Walton | -2/+2 | |
| 2013-03-29 | librustc: Remove `fail_unless!` | Patrick Walton | -46/+46 | |
| 2013-03-22 | test: replace uses of old deriving attribute with new one | Andrew Paseltiner | -1/+1 | |
| 2013-03-07 | librustc: Convert all uses of `assert` over to `fail_unless!` | Patrick Walton | -46/+46 | |
| 2013-03-07 | librustc: Remove "extern mod { ... }" from librustc, librustdoc, and tests. ↵ | Patrick Walton | -5/+7 | |
| rs=deexterning | ||||
| 2013-02-22 | test: De-mut the test suite. rs=demuting | Patrick Walton | -11/+5 | |
| 2013-02-14 | librustc: Replace `impl Type : Trait` with `impl Trait for Type`. ↵ | Patrick Walton | -1/+1 | |
| rs=implflipping | ||||
| 2013-02-01 | check-fast fallout from removing export, r=burningtree | Graydon Hoare | -1/+1 | |
| 2013-01-30 | test: Remove export from the tests, language, and libraries. rs=deexporting | Patrick Walton | -3/+2 | |
| 2013-01-23 | libsyntax: Remove `fn() unsafe { ... }`. r=graydon | Patrick Walton | -12/+14 | |
| 2013-01-07 | test: Fix check-fast for resolve changes. rs=bustage | Patrick Walton | -5/+5 | |
| 2012-12-13 | librustc: Make `use` statements crate-relative by default. r=brson | Patrick Walton | -8/+5 | |
| 2012-12-10 | Reliciense makefiles and testsuite. Yup. | Graydon Hoare | -0/+10 | |
| 2012-11-19 | rustc: Implement explicit self for Eq and Ord. r=graydon | Patrick Walton | -3/+3 | |
| 2012-10-01 | Move over to calling ptr::addr_of | Tim Chevalier | -2/+2 | |
| Everything should now call ptr::addr_of instead of ptr::p2::addr_of. Only the pipes macro code when compiled by stage0 will call ptr::p2::addr_of. Needs a snapshot to get rid of that. | ||||
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under ↵ | Graydon Hoare | -0/+1 | |
| #[legacy_exports]; | ||||
| 2012-09-20 | rustc: De-mode all overloaded operators | Patrick Walton | -3/+3 | |
| 2012-09-18 | core: Rename 'unsafe' mod to 'cast' | Brian Anderson | -6/+6 | |
| 2012-09-11 | Convert 'use' to 'extern mod'. Remove old 'use' syntax | Brian Anderson | -1/+1 | |
| 2012-09-07 | Remove 'let' syntax for struct fields | Brian Anderson | -2/+2 | |
| 2012-09-07 | rustc: Add an "ne" method to the Eq trait, and implement it everywhere | Patrick Walton | -0/+1 | |
| 2012-09-06 | Remove struct ctors | Brian Anderson | -1/+7 | |
| 2012-09-05 | test: "import" -> "use" | Patrick Walton | -3/+1 | |
| 2012-09-01 | Demode reinterpret_cast | Brian Anderson | -5/+5 | |
| 2012-08-29 | rustc: Make `<` and `=` into traits | Patrick Walton | -51/+6 | |
| 2012-08-27 | Camel case various core constructors | Brian Anderson | -5/+5 | |
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -2/+2 | |
| 2012-08-17 | Remove the class keyword | Brian Anderson | -1/+1 | |
| 2012-08-15 | Convert more core types to camel case | Brian Anderson | -1/+1 | |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -2/+2 | |
| 2012-07-17 | finish fixing broken un-unsupervise windows tests | Ben Blum | -2/+2 | |
| 2012-07-17 | Change all test/run-pass uses of rustrt::unsupervise() to something else | Ben Blum | -3/+3 | |
| 2012-07-03 | Switch 'native' to 'extern' (or 'foreign' in some descriptions) | Graydon Hoare | -1/+1 | |
| 2012-06-26 | Change 'native' and 'crust' to 'extern'. | Graydon Hoare | -2/+2 | |
| This comes with a terminology change. All linkage-symbols are 'extern' now, including rust syms in other crates. Some extern ABIs are merely "foreign". The term "native" is retired, not clear/useful. What was "crust" is now "extern" applied to a _definition_. This is a bit of an overloading, but should be unambiguous: it means that the definition should be made available to some non-rust ABI. | ||||
| 2012-06-25 | Comment out the *right* part of the test failing due to issue #2724. | Michael Sullivan | -3/+3 | |
| 2012-06-25 | Comment out a failing part of a test; this is Issue #2724. | Michael Sullivan | -1/+2 | |
| 2012-06-25 | Finish compare glue for classes | Tim Chevalier | -4/+24 | |
| This tests == and !=. I don't know what <, >, etc. should do. Closes #2601 | ||||
| 2012-06-14 | Comments only: annotate FIXMEs in tests | Tim Chevalier | -1/+1 | |
| 2012-05-22 | Get rid of the >>> operator and make >> logical or arithmetic depending on ↵ | Michael Sullivan | -1/+0 | |
| the signedness. Closes #2417. | ||||
| 2012-02-20 | core: New task API | Brian Anderson | -11/+0 | |
| 2012-02-05 | test: Resolve some FIXMEs | Brian Anderson | -7/+16 | |
| 2012-02-03 | Remove experimental GC code | Marijn Haverbeke | -3/+1 | |
| It's been sitting unused long enough to have bitrotted completely. | ||||
| 2012-01-13 | Remove tests for objs, adjust tests that use objs | Marijn Haverbeke | -24/+0 | |
| 2012-01-06 | port over the tests to use the new API | Niko Matsakis | -3/+3 | |
| 2011-12-16 | implement #[nolink]; deprecate #[link_name = ""]; note in stdlib to remove ↵ | Graham Fawcett | -1/+1 | |
| empty link_name. Can't remove them from stdlib until the snapshotted compiler supports #[nolink]. | ||||
| 2011-12-13 | Copy first batch of material from libstd to libcore. | Graydon Hoare | -3/+3 | |
| 2011-11-16 | Use attributes for native module ABI and link name | Haitao Li | -1/+3 | |
| This patch changes how to specify ABI and link name of a native module. Before: native "cdecl" mod llvm = "rustllvm" {...} After: #[abi = "cdecl"] #[link_name = "rustllvm"] native mod llvm {...} The old optional syntax for ABI and link name is no longer supported. Fixes issue #547 | ||||
| 2011-11-09 | Add "cdecl" as synonym for "c-stack-cdecl" | Brian Anderson | -1/+1 | |
