Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / AArch64 / sve-streaming-mode-fixed-length-fp-convert.ll
blob18f9a4d371d0cf4a1f6ecd81b69c623e84e0b179
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc -mattr=+sve -force-streaming-compatible-sve  < %s | FileCheck %s
3 ; RUN: llc -mattr=+sme -force-streaming-compatible-sve  < %s | FileCheck %s
5 target triple = "aarch64-unknown-linux-gnu"
7 ; Ensure we don't crash when trying to combine fp<->int conversions
8 define void @fp_convert_combine_crash(ptr %a, ptr %b) {
9 ; CHECK-LABEL: fp_convert_combine_crash:
10 ; CHECK:       // %bb.0:
11 ; CHECK-NEXT:    ptrue p0.s, vl4
12 ; CHECK-NEXT:    ldp q1, q2, [x0]
13 ; CHECK-NEXT:    fmov z0.s, #8.00000000
14 ; CHECK-NEXT:    fmul z1.s, p0/m, z1.s, z0.s
15 ; CHECK-NEXT:    fmul z0.s, p0/m, z0.s, z2.s
16 ; CHECK-NEXT:    fcvtzs z1.s, p0/m, z1.s
17 ; CHECK-NEXT:    fcvtzs z0.s, p0/m, z0.s
18 ; CHECK-NEXT:    stp q1, q0, [x1]
19 ; CHECK-NEXT:    ret
20   %f = load <8 x float>, ptr %a
21   %mul.i = fmul <8 x float> %f, <float 8.000000e+00, float 8.000000e+00, float 8.000000e+00, float 8.000000e+00,
22                                  float 8.000000e+00, float 8.000000e+00, float 8.000000e+00, float 8.000000e+00>
23   %vcvt.i = fptosi <8 x float> %mul.i to <8 x i32>
24   store <8 x i32> %vcvt.i, ptr %b
25   ret void