Home | History | Annotate | Download | only in PowerPC
      1 ; RUN: llc < %s -march=ppc32 -mcpu=g5
      2 
      3 define <4 x i32> @test_arg(<4 x i32> %A, <4 x i32> %B) {
      4 	%C = add <4 x i32> %A, %B		; <<4 x i32>> [#uses=1]
      5 	ret <4 x i32> %C
      6 }
      7 
      8 define <4 x i32> @foo() {
      9 	%X = call <4 x i32> @test_arg( <4 x i32> zeroinitializer, <4 x i32> zeroinitializer )		; <<4 x i32>> [#uses=1]
     10 	ret <4 x i32> %X
     11 }
     12