mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	Some of these tests fail on Darwin systems because of a lack of a triple; fix that. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230421 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			23 lines
		
	
	
		
			530 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			530 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
| ; RUN: llc < %s -march=ppc64 -mcpu=a2q | FileCheck %s
 | |
| target triple = "powerpc64-bgq-linux"
 | |
| 
 | |
| declare <4 x double> @foo(<4 x double> %p)
 | |
| 
 | |
| define <4 x double> @bar(<4 x double> %p, <4 x double> %q) {
 | |
| entry:
 | |
|   %v = call <4 x double> @foo(<4 x double> %p)
 | |
|   %w = call <4 x double> @foo(<4 x double> %q)
 | |
|   %x = fadd <4 x double> %v, %w
 | |
|   ret <4 x double> %x
 | |
| 
 | |
| ; CHECK-LABEL: @bar
 | |
| ; CHECK: qvstfdx 2,
 | |
| ; CHECK: bl foo
 | |
| ; CHECK: qvstfdx 1,
 | |
| ; CHECK: qvlfdx 1,
 | |
| ; CHECK: bl foo
 | |
| ; CHECK: qvlfdx [[REG:[0-9]+]],
 | |
| ; CHECK: qvfadd 1, [[REG]], 1
 | |
| }
 | |
| 
 |