Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / VE / VELIntrinsics / pcvm.ll
blobf9e1aee663f42a93e2aab69697a0ae3f10b0fd87
1 ; RUN: llc < %s -mtriple=ve -mattr=+vpu | FileCheck %s
3 ;;; Test population count of vm intrinsic instructions
4 ;;;
5 ;;; Note:
6 ;;;   We test PCVM*ml instruction.
8 ; Function Attrs: nounwind readnone
9 define fastcc i64 @pcvm_sml(<256 x i1> %0) {
10 ; CHECK-LABEL: pcvm_sml:
11 ; CHECK:       # %bb.0:
12 ; CHECK-NEXT:    lea %s0, 256
13 ; CHECK-NEXT:    lvl %s0
14 ; CHECK-NEXT:    pcvm %s0, %vm1
15 ; CHECK-NEXT:    b.l.t (, %s10)
16   %2 = tail call i64 @llvm.ve.vl.pcvm.sml(<256 x i1> %0, i32 256)
17   ret i64 %2
20 ; Function Attrs: nounwind readnone
21 declare i64 @llvm.ve.vl.pcvm.sml(<256 x i1>, i32)