2012-07-18 20:58:22 +02:00
|
|
|
; 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:
|
2012-09-18 03:42:45 +02:00
|
|
|
; CHECK: vld1.32
|
|
|
|
; CHECK-NEXT: vst1.32
|
|
|
|
; CHECK-NEXT: vst1.32
|
2012-07-18 20:58:22 +02:00
|
|
|
; CHECK-NEXT: vmov.f32
|
|
|
|
; CHECK-NEXT: vmov.f32
|
2012-09-18 03:42:45 +02:00
|
|
|
; CHECK-NEXT: vst1.32
|
2012-07-18 20:58:22 +02:00
|
|
|
|
|
|
|
entry:
|
2012-09-20 23:35:21 +02:00
|
|
|
%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
|
2012-07-18 20:58:22 +02:00
|
|
|
%1 = insertelement <4 x float> %0, float 1.000000e+00, i32 3
|
2012-09-20 23:35:21 +02:00
|
|
|
store <4 x float> %1, <4 x float>* undef, align 4
|
2012-07-18 20:58:22 +02:00
|
|
|
unreachable
|
|
|
|
}
|