[AArch64,ELF] Restrict MOVZ/MOVK to non-PIC large code model (#70178)
[llvm-project.git] / llvm / test / CodeGen / VE / VELIntrinsics / negm.ll
blobe2189093b5245cc7df3e25f0a98935f079fb29f6
1 ; RUN: llc < %s -mtriple=ve -mattr=+vpu | FileCheck %s
3 ;;; Test negate vm intrinsic instructions
4 ;;;
5 ;;; Note:
6 ;;;   We test NEGM*m and NEGM*y instructions.
8 ; Function Attrs: nounwind readnone
9 define fastcc <256 x i1> @negm_mm(<256 x i1> %0) {
10 ; CHECK-LABEL: negm_mm:
11 ; CHECK:       # %bb.0:
12 ; CHECK-NEXT:    negm %vm1, %vm1
13 ; CHECK-NEXT:    b.l.t (, %s10)
14   %2 = tail call <256 x i1> @llvm.ve.vl.negm.mm(<256 x i1> %0)
15   ret <256 x i1> %2
18 ; Function Attrs: nounwind readnone
19 declare <256 x i1> @llvm.ve.vl.negm.mm(<256 x i1>)
21 ; Function Attrs: nounwind readnone
22 define fastcc <512 x i1> @negm_MM(<512 x i1> %0) {
23 ; CHECK-LABEL: negm_MM:
24 ; CHECK:       # %bb.0:
25 ; CHECK-NEXT:    negm %vm2, %vm2
26 ; CHECK-NEXT:    negm %vm3, %vm3
27 ; CHECK-NEXT:    b.l.t (, %s10)
28   %2 = tail call <512 x i1> @llvm.ve.vl.negm.MM(<512 x i1> %0)
29   ret <512 x i1> %2
32 ; Function Attrs: nounwind readnone
33 declare <512 x i1> @llvm.ve.vl.negm.MM(<512 x i1>)