rust/src/librustc/middle/trans
bors 00cdd639a9 auto merge of #15394 : pcwalton/rust/new-index-traits, r=nick29581
This will break code that used the old `Index` trait. Change this code
to use the new `Index` traits. For reference, here are their signatures:

    pub trait Index<Index,Result> {
        fn index<'a>(&'a self, index: &Index) -> &'a Result;
    }
    pub trait IndexMut<Index,Result> {
        fn index_mut<'a>(&'a mut self, index: &Index) -> &'a mut Result;
    }

Closes #6515.

[breaking-change]

r? @nick29581
2014-07-07 22:46:41 +00:00
..
_match.rs auto merge of #15440 : pcwalton/rust/struct-aliases, r=brson 2014-07-07 21:01:42 +00:00
adt.rs Store booleans as i8 in memory to improve optimizations by LLVM 2014-07-06 22:12:10 +02:00
asm.rs Added Mipsel architecture support 2014-06-24 11:12:10 +02:00
base.rs auto merge of #15464 : dotdash/rust/bool_stores, r=pcwalton 2014-07-07 03:01:34 +00:00
basic_block.rs Switch some tuple structs to pub fields 2014-03-31 19:50:51 -07:00
build.rs Rename all raw pointers as necessary 2014-06-28 11:53:58 -07:00
builder.rs librustc: Permit by-value-self methods to be invoked on objects 2014-06-30 18:43:31 -07:00
cabi_arm.rs Store booleans as i8 in memory to improve optimizations by LLVM 2014-07-06 22:12:10 +02:00
cabi_mips.rs Store booleans as i8 in memory to improve optimizations by LLVM 2014-07-06 22:12:10 +02:00
cabi_x86_64.rs Store booleans as i8 in memory to improve optimizations by LLVM 2014-07-06 22:12:10 +02:00
cabi_x86.rs Store booleans as i8 in memory to improve optimizations by LLVM 2014-07-06 22:12:10 +02:00
cabi.rs Added Mipsel architecture support 2014-06-24 11:12:10 +02:00
callee.rs auto merge of #15464 : dotdash/rust/bool_stores, r=pcwalton 2014-07-07 03:01:34 +00:00
cleanup.rs librustc: Make sure to run destructors in the right order when matching on moved value. 2014-07-04 18:05:09 -07:00
closure.rs Remove entry_bcx from FunctionContext 2014-07-05 01:52:12 +02:00
common.rs auto merge of #15464 : dotdash/rust/bool_stores, r=pcwalton 2014-07-07 03:01:34 +00:00
consts.rs Compile bools to i1 2014-06-21 19:59:58 +02:00
context.rs Rename all raw pointers as necessary 2014-06-28 11:53:58 -07:00
controlflow.rs rustc: Move the AST from @T to Gc<T> 2014-06-11 09:51:37 -07:00
datum.rs Store booleans as i8 in memory to improve optimizations by LLVM 2014-07-06 22:12:10 +02:00
debuginfo.rs Test fixes and rebase conflicts 2014-07-05 12:46:42 -07:00
doc.rs librustc: Remove ~EXPR, ~TYPE, and ~PAT from the language, except 2014-05-06 23:12:54 -07:00
expr.rs librustc (RFC #34): Implement the new Index and IndexMut traits. 2014-07-07 11:43:23 -07:00
foreign.rs auto merge of #15464 : dotdash/rust/bool_stores, r=pcwalton 2014-07-07 03:01:34 +00:00
glue.rs auto merge of #15464 : dotdash/rust/bool_stores, r=pcwalton 2014-07-07 03:01:34 +00:00
inline.rs librustc: Make addresses of immutable statics insignificant unless 2014-06-17 11:44:00 -07:00
intrinsic.rs auto merge of #15464 : dotdash/rust/bool_stores, r=pcwalton 2014-07-07 03:01:34 +00:00
llrepr.rs std: Remove format_strbuf!() 2014-05-28 08:35:41 -07:00
machine.rs Make size_of, align_of, and element_offset functions return u64 instead of uint in trans::machine (per #5172) 2014-01-30 17:20:35 -05:00
macros.rs Convert most code to new inner attribute syntax. 2014-03-28 17:12:21 -07:00
meth.rs librustc: Permit by-value-self methods to be invoked on objects 2014-06-30 18:43:31 -07:00
mod.rs Remove special rooting code from trans 2014-04-23 18:19:05 +02:00
monomorphize.rs rustc: Remove CrateId and all related support 2014-07-05 12:38:42 -07:00
reflect.rs auto merge of #15464 : dotdash/rust/bool_stores, r=pcwalton 2014-07-07 03:01:34 +00:00
tvec.rs Register new snapshots 2014-06-15 23:30:24 -07:00
type_.rs Store booleans as i8 in memory to improve optimizations by LLVM 2014-07-06 22:12:10 +02:00
type_of.rs Store booleans as i8 in memory to improve optimizations by LLVM 2014-07-06 22:12:10 +02:00
value.rs Fix fallout from std::libc separation 2014-04-04 09:31:44 -07:00