blob: 25f6de4762d5695cd0c048fbfcd1a55435751ae2 [file] [log] [blame]
Silviu Barangac8bf0f82012-09-17 14:10:54 +00001; RUN: llc < %s -march=arm -float-abi=hard -mcpu=cortex-a15 -mattr=+neon,+neonfp | FileCheck %s
2
3; This test checks that the VMLxForwarting feature is disabled for A15.
4; CHECK: fun_a
5define <4 x i32> @fun_a(<4 x i32> %x, <4 x i32> %y) nounwind{
6 %1 = add <4 x i32> %x, %y
7; CHECK-NOT: vmul
8; CHECK: vmla
9 %2 = mul <4 x i32> %1, %1
10 %3 = add <4 x i32> %y, %2
11 ret <4 x i32> %3
12}