2012-07-18 18:58:22 +00:00
|
|
|
; Tests for the two-address instruction pass.
|
2014-05-30 10:09:59 +00:00
|
|
|
; RUN: llc -mtriple=arm-eabi -mcpu=cortex-a9 -arm-atomic-cfg-tidy=0 %s -o - | FileCheck %s
|
2012-07-18 18:58:22 +00:00
|
|
|
|
|
|
|
define void @PR13378() nounwind {
|
|
|
|
; This was orriginally a crasher trying to schedule the instructions.
|
2013-07-14 06:24:09 +00:00
|
|
|
; CHECK-LABEL: PR13378:
|
2012-09-18 01:42:45 +00:00
|
|
|
; CHECK: vld1.32
|
2013-10-11 18:09:19 +00:00
|
|
|
; CHECK-NEXT: vst1.32
|
|
|
|
; CHECK-NEXT: vst1.32
|
|
|
|
; CHECK-NEXT: vmov.f32
|
|
|
|
; CHECK-NEXT: vmov.f32
|
|
|
|
; CHECK-NEXT: vst1.32
|
2012-07-18 18:58:22 +00:00
|
|
|
|
|
|
|
entry:
|
2012-09-20 21:35:21 +00: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 18:58:22 +00:00
|
|
|
%1 = insertelement <4 x float> %0, float 1.000000e+00, i32 3
|
2012-09-20 21:35:21 +00:00
|
|
|
store <4 x float> %1, <4 x float>* undef, align 4
|
2012-07-18 18:58:22 +00:00
|
|
|
unreachable
|
|
|
|
}
|