Commits

Chris Lattner committed fadda48e264
Switch the alloc_array instruction to return two results instead of a tuple. Where before we had: %8 = alloc_array element type=Int, %7 %9 = tupleelement %8, 1 %10 = tupleelement %8, 0 %11 = type_conversion %9 -> Builtin.RawPointer .. %17 = apply %16(%11, %10, %7) we now have: %8 = alloc_array element type=Int, %7 %9 = type_conversion %8#1 -> Builtin.RawPointer .. %15 = apply %14(%9, %8#0, %7) Swift SVN r3220