Files
clang-p2996/llvm/test/CodeGen/VE/VELIntrinsics/svob.ll
Kazushi (Jam) Marukawa 12167632bc [VE] Add SVOB intrinsic instruction
Add SVOB intrinsic instruction and a regression test.

Reviewed By: simoll

Differential Revision: https://reviews.llvm.org/D94279
2021-01-08 18:49:17 +09:00

20 lines
456 B
LLVM

; RUN: llc < %s -mtriple=ve -mattr=+vpu | FileCheck %s
;;; Test set vector out-of-order memory access boundary intrinsic instructions
;;;
;;; Note:
;;; We test SVOB instruction.
; Function Attrs: nounwind
define fastcc void @svob_svob() {
; CHECK-LABEL: svob_svob:
; CHECK: # %bb.0:
; CHECK-NEXT: svob
; CHECK-NEXT: b.l.t (, %s10)
tail call void @llvm.ve.vl.svob()
ret void
}
; Function Attrs: nounwind
declare void @llvm.ve.vl.svob()