15 lines
511 B
LLVM
15 lines
511 B
LLVM
|
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
||
|
; RUN: llc --mtriple=loongarch64 --mattr=+lsx < %s | FileCheck %s
|
||
|
|
||
|
declare <16 x i8> @llvm.loongarch.lsx.vor.v(<16 x i8>, <16 x i8>)
|
||
|
|
||
|
define <16 x i8> @lsx_vor_v(<16 x i8> %va, <16 x i8> %vb) nounwind {
|
||
|
; CHECK-LABEL: lsx_vor_v:
|
||
|
; CHECK: # %bb.0: # %entry
|
||
|
; CHECK-NEXT: vor.v $vr0, $vr0, $vr1
|
||
|
; CHECK-NEXT: ret
|
||
|
entry:
|
||
|
%res = call <16 x i8> @llvm.loongarch.lsx.vor.v(<16 x i8> %va, <16 x i8> %vb)
|
||
|
ret <16 x i8> %res
|
||
|
}
|