blob: b835faecdc18e00782c92b37e000b6d08418091d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
; 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()
|