Commits

Erik Eckstein committed f39291772c8
Remove const_use_iterator from SILValue and ValueBase. It was defined as the const version of use_iterator, which was wrong (e.g. you can't increment it). Actually we don't need it at all: use_begin/use_end can be const and return the non-const iterator, because a value is not the container of its uses. Swift SVN r28870