Reid Spencer | 69ccadd | 2006-12-02 04:23:10 +0000 | [diff] [blame^] | 1 | ; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc32 -mcpu=g5 |
Chris Lattner | 4e64b5b | 2006-05-17 00:18:23 +0000 | [diff] [blame] | 2 | |
3 | <4 x int> %test_arg(<4 x int> %A, <4 x int> %B) { | ||||
4 | %C = add <4 x int> %A, %B | ||||
5 | ret <4 x int> %C | ||||
6 | } | ||||
7 | |||||
8 | <4 x int> %foo() { | ||||
9 | %X = call <4 x int> %test_arg(<4 x int> zeroinitializer, <4 x int> zeroinitializer) | ||||
10 | ret <4 x int> %X | ||||
11 | } |