Home | History | Annotate | Download | only in PowerPC
      1 ; RUN: llc < %s -march=ppc64 -mattr=+altivec | grep dst | count 4
      2 
      3 define hidden void @_Z4borkPc(i8* %image) {
      4 entry:
      5 	tail call void @llvm.ppc.altivec.dst( i8* %image, i32 8, i32 0 )
      6 	tail call void @llvm.ppc.altivec.dstt( i8* %image, i32 8, i32 0 )
      7 	tail call void @llvm.ppc.altivec.dstst( i8* %image, i32 8, i32 0 )
      8 	tail call void @llvm.ppc.altivec.dststt( i8* %image, i32 8, i32 0 )
      9 	ret void
     10 }
     11 
     12 declare void @llvm.ppc.altivec.dst(i8*, i32, i32)
     13 declare void @llvm.ppc.altivec.dstt(i8*, i32, i32)
     14 declare void @llvm.ppc.altivec.dstst(i8*, i32, i32)
     15 declare void @llvm.ppc.altivec.dststt(i8*, i32, i32)
     16