brintos

brintos / llvm-project-archived public Read only

0
0
Text · 453 B · 1fc43c3 Raw
16 lines · plain
1; RUN: llc -mtriple=arm-eabi -mattr=+neon %s -o - | FileCheck %s2; PR113193 4@src1_v2i16 = global <2 x i16> <i16 0, i16 1>5@res_v2i16  = global <2 x i16> <i16 0, i16 0>6 7declare <2 x i16> @foo_v2i16(<2 x i16>) nounwind8 9define void @test_neon_call_return_v2i16() {10; CHECK-LABEL: test_neon_call_return_v2i16:11  %1 = load <2 x i16>, ptr @src1_v2i1612  %2 = call <2 x i16> @foo_v2i16(<2 x i16> %1) nounwind13  store <2 x i16> %2, ptr @res_v2i1614  ret void15}16