llvm-6502/test/CodeGen/X86/prefetch.ll
Dan Gohman c5b822b5b6 Convert several tests to use temporary files instead of redundantly
executing the test commands.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52163 91177308-0d34-0410-b5e6-96231b3b80d8
2008-06-10 00:36:41 +00:00

17 lines
498 B
LLVM

; 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