[ARM] Fixup the creation of VPT blocks
[llvm-core.git] / test / CodeGen / AArch64 / autoupgrade-aarch64-neon-addp-float.ll
blobd53a25c5a43b0d65c7ac966709538e16678beafc
1 ; RUN: opt -S < %s -mtriple=arm64 | FileCheck %s
2 declare <4 x float> @llvm.aarch64.neon.addp.v4f32(<4 x float>, <4 x float>)
4 ; CHECK: call <4 x float> @llvm.aarch64.neon.faddp.v4f32
5 define <4 x float> @upgrade_aarch64_neon_addp_float(<4 x float> %a, <4 x float> %b) {
6   %res = call <4 x float> @llvm.aarch64.neon.addp.v4f32(<4 x float> %a, <4 x float> %b)
7   ret <4 x float> %res