mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
aa267976b5
llvm-svn: 164030
13 lines
384 B
LLVM
13 lines
384 B
LLVM
; RUN: llc < %s -march=arm -float-abi=hard -mcpu=cortex-a15 -mattr=+neon,+neonfp | FileCheck %s
|
|
|
|
; This test checks that the VMLxForwarting feature is disabled for A15.
|
|
; CHECK: fun_a
|
|
define <4 x i32> @fun_a(<4 x i32> %x, <4 x i32> %y) nounwind{
|
|
%1 = add <4 x i32> %x, %y
|
|
; CHECK-NOT: vmul
|
|
; CHECK: vmla
|
|
%2 = mul <4 x i32> %1, %1
|
|
%3 = add <4 x i32> %y, %2
|
|
ret <4 x i32> %3
|
|
}
|