mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184709 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			17 lines
		
	
	
		
			513 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			513 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
| ; RUN: llc < %s -mtriple=i386-apple-darwin -mcpu=corei7 | not grep fstpt
 | |
| ; PR3457
 | |
| ; rdar://6548010
 | |
| 
 | |
| define void @foo(double* nocapture %P) nounwind {
 | |
| entry:
 | |
| 	%0 = tail call double (...)* @test() nounwind		; <double> [#uses=2]
 | |
| 	%1 = tail call double (...)* @test() nounwind		; <double> [#uses=2]
 | |
| 	%2 = fmul double %0, %0		; <double> [#uses=1]
 | |
| 	%3 = fmul double %1, %1		; <double> [#uses=1]
 | |
| 	%4 = fadd double %2, %3		; <double> [#uses=1]
 | |
| 	store double %4, double* %P, align 8
 | |
| 	ret void
 | |
| }
 | |
| 
 | |
| declare double @test(...)
 |