1 ; RUN: llvm-dis %p/aarch64-addp-upgrade.bc -o - | FileCheck %s
3 ; Bitcode was generated from file below, which may or may not even assemble any
6 ; CHECK: call <2 x float> @llvm.aarch64.neon.faddp.v2f32(<2 x float> %lhs, <2 x float> %rhs)
7 define <2 x float> @test_addp(<2 x float> %lhs, <2 x float> %rhs) {
8 %res = call <2 x float> @llvm.aarch64.neon.addp.v2f32(<2 x float> %lhs, <2 x float> %rhs)
12 ; CHECK: call <2 x float> @llvm.aarch64.neon.faddp.v2f32(<2 x float> %lhs, <2 x float> %rhs)
13 define <2 x float> @test_addp1(<2 x float> %lhs, <2 x float> %rhs) {
14 %res = call <2 x float> @llvm.aarch64.neon.addp.v2f32(<2 x float> %lhs, <2 x float> %rhs)
18 declare <2 x float> @llvm.aarch64.neon.addp.v2f32(<2 x float>, <2 x float>)