summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/prefetch.ll
blob: d6517f7ef5b13131b2f89f592357d983e81bb9a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse > %t
; RUN: grep prefetchnta %t
; RUN: grep prefetcht0 %t
; RUN: grep prefetcht1 %t
; RUN: grep prefetcht2 %t

define void @t(i8* %ptr) nounwind  {
entry:
	tail call void @llvm.prefetch( i8* %ptr, i32 0, i32 1 )
	tail call void @llvm.prefetch( i8* %ptr, i32 0, i32 2 )
	tail call void @llvm.prefetch( i8* %ptr, i32 0, i32 3 )
	tail call void @llvm.prefetch( i8* %ptr, i32 0, i32 0 )
	ret void
}

declare void @llvm.prefetch(i8*, i32, i32) nounwind