Commits

Arnold Schwaighofer committed edf9ca06fc9
Unroll loops with known short trip count This enables array value propagation in array literal loops like: for e in [2,3,4] { r += e } Allowing us to completely get rid of the array. rdar://19958821 SR-203