mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-30 16:17:05 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164320 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			22 lines
		
	
	
		
			674 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			674 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
| ; Tests for the two-address instruction pass.
 | |
| ; RUN: llc -march=arm -mcpu=cortex-a9 < %s | FileCheck %s
 | |
| 
 | |
| define void @PR13378() nounwind {
 | |
| ; This was orriginally a crasher trying to schedule the instructions.
 | |
| ; CHECK:      PR13378:
 | |
| ; CHECK:        vld1.32
 | |
| ; CHECK-NEXT:   vst1.32
 | |
| ; CHECK-NEXT:   vst1.32
 | |
| ; CHECK-NEXT:   vmov.f32
 | |
| ; CHECK-NEXT:   vmov.f32
 | |
| ; CHECK-NEXT:   vst1.32
 | |
| 
 | |
| entry:
 | |
|   %0 = load <4 x float>* undef, align 4
 | |
|   store <4 x float> zeroinitializer, <4 x float>* undef, align 4
 | |
|   store <4 x float> %0, <4 x float>* undef, align 4
 | |
|   %1 = insertelement <4 x float> %0, float 1.000000e+00, i32 3
 | |
|   store <4 x float> %1, <4 x float>* undef, align 4
 | |
|   unreachable
 | |
| }
 |