mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	executing the test commands. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52163 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			17 lines
		
	
	
		
			498 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			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 
 |