[win/asan] GetInstructionSize: Fix `83 E4 XX` to return 3. (#119644)
[llvm-project.git] / llvm / test / CodeGen / ARM / twoaddrinstr.ll
blob5890e09d0b0d2a73628c23b8eac1b4b5da0e23af
1 ; Tests for the two-address instruction pass.
2 ; RUN: llc -mtriple=arm-eabi -mcpu=cortex-a9 -arm-atomic-cfg-tidy=0 %s -o - | FileCheck %s
4 define void @PR13378() nounwind {
5 ; This was orriginally a crasher trying to schedule the instructions.
6 ; CHECK-LABEL:      PR13378:
7 ; CHECK:        vmov.i32
8 ; CHECK-NEXT:   vld1.32
9 ; CHECK-NEXT:   vst1.32
10 ; CHECK-NEXT:   vst1.32
11 ; CHECK-NEXT:   vmov.f32
12 ; CHECK-NEXT:   vmov.f32
13 ; CHECK-NEXT:   vst1.32
15 entry:
16   %0 = load <4 x float>, ptr undef, align 4
17   store <4 x float> zeroinitializer, ptr undef, align 4
18   store <4 x float> %0, ptr undef, align 4
19   %1 = insertelement <4 x float> %0, float 1.000000e+00, i32 3
20   store <4 x float> %1, ptr undef, align 4
21   unreachable