]> git.lizzy.rs Git - rust.git/history - src/lvalue.rs
Address things complained about by clippy
[rust.git] / src / lvalue.rs
2017-05-05 Oliver SchneiderAddress things complained about by clippy
2017-04-26 Eduard-Mihai BurtescuMerge pull request #161 from oli-obk/master
2017-04-26 Oliver SchneiderAddress clippy lints
2017-04-21 Eduard-Mihai BurtescuMerge pull request #156 from oli-obk/master
2017-04-21 Eduard-Mihai BurtescuImport EvalError in lvalue.
2017-04-21 Eduard-Mihai BurtescuHandle Use of ! as Unreachable is not emitted nowadays.
2017-03-23 Oliver SchneiderThinify the fat pointer on virtual function calls
2017-03-23 Oliver SchneiderMerge branch 'master' of https://github.com/tsion/miri
2017-03-21 Oliver SchneiderCompiles again
2017-03-14 Scott OlsonMerge pull request #152 from oli-obk/intrinsics
2017-03-14 Scott OlsonMerge pull request #146 from oli-obk/peephole1
2017-03-14 Scott OlsonMerge pull request #147 from oli-obk/rustup
2017-03-14 Oliver SchneiderUse deterministic keyword renaming (append `_`)
2017-03-13 Oliver SchneiderRustup to rustc 1.17.0-nightly (824c9ebbd 2017-03-12)
2017-02-24 Oliver Schneiderdon't allocate for primvals
2017-02-24 Oliver Schneiderrepresent single field structs as their single field
2017-02-24 Scott OlsonMerge pull request #141 from oli-obk/bug1
2017-02-24 Scott OlsonMerge pull request #140 from oli-obk/master
2017-02-14 Oliver Schneiderdon't duplicate field access logic, always go through...
2017-02-10 Scott OlsonMerge pull request #139 from oli-obk/master
2017-02-10 Oliver Schneiderremove a hack that is now useless
2017-02-10 Oliver Schneiderenable Lvalue::Local to refer to a ValPair field
2017-02-10 Scott OlsonMerge pull request #138 from oli-obk/master
2017-02-10 Oliver Schneidermove some variables closer to their use site.
2017-02-10 Oliver Schneideruse the `lvalue_field` function more often to save...
2017-02-10 Oliver Schneiderfactor out lvalue field access into its own function
2017-02-10 Oliver Schneidermove base computation into each projection to allow...
2017-02-09 Scott OlsonMerge pull request #128 from oli-obk/align_thyself
2017-02-09 Scott OlsonMerge pull request #127 from oli-obk/print_panic
2017-02-09 Scott OlsonMerge pull request #126 from oli-obk/1>-1
2017-02-09 Scott OlsonMerge pull request #125 from oli-obk/master
2017-02-09 Oliver Schneideruse pre-existing `abi_align` method instead of magic...
2017-02-09 Oliver Schneidercompute the offset of dst fields by checking the vtable
2017-02-08 Scott OlsonMerge pull request #122 from oli-obk/master
2017-02-08 Oliver Schneiderprevent more deallocations of statics
2017-02-03 Scott OlsonMerge pull request #108 from oli-obk/packd
2017-02-03 Scott OlsonMerge pull request #109 from oli-obk/patch-2
2017-02-03 Scott OlsonMerge pull request #110 from oli-obk/rename_map_hir
2017-02-03 Oliver Schneiderrustup
2017-01-31 Oliver Schneiderfix accessing fields other than the first in packed...
2017-01-30 Oliver Schneiderimplement packed struct field access
2017-01-17 Scott OlsonUse the new field init shorthand.
2016-12-19 Scott OlsonUpdate MIR passes to match rustc.
2016-12-19 Scott OlsonChange Option<Value> to Value, using ByVal(Undef).
2016-12-17 Scott OlsonReading undef local/globals gets PrimVal::Undef.
2016-12-17 Scott OlsonTurn invalid panics into Results and rename fns.
2016-12-08 Scott OlsonAdd support for untagged unions.
2016-12-08 Scott OlsonMove lvalue-related methods to lvalue mod.
2016-12-08 Scott OlsonMove lvalue data structures out of eval_context.