about summary refs log tree commit diff
path: root/src/comp/middle/last_use.rs
AgeCommit message (Collapse)AuthorLines
2011-12-16reorder args to the various vec, option fns so blk comes lastNiko Matsakis-3/+3
2011-12-14first attempt, not happy with itNiko Matsakis-1/+2
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-1/+2
2011-12-01Fix mistake in last use passMarijn Haverbeke-5/+12
Closes #1243
2011-11-21Fix bad interaction between last-use finding and referencesMarijn Haverbeke-6/+14
The last-use pass now takes input from the alias pass to not mark things as last uses that are still accessed through a reference. Issue #925
2011-11-18Add some comments to kind.rs and last_use.rsMarijn Haverbeke-0/+18
2011-11-18Make trans use last_use info to not actually generate copiesMarijn Haverbeke-1/+7
Issue #925
2011-11-18Implement a last-use-of-local finding algorithmMarijn Haverbeke-0/+219
Issue #925