mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-16 11:05:54 +00:00
6f2b85ddd4
specifying that the target CPU is corei7. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133053 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
347 B
LLVM
18 lines
347 B
LLVM
; A test for checking PR 9623
|
|
;RUN: llc -march=x86-64 -mcpu=corei7 -promote-elements < %s | FileCheck %s
|
|
|
|
target triple = "x86_64-apple-darwin"
|
|
|
|
; CHECK: pmulld
|
|
; CHECK: paddd
|
|
; CHECK: movdqa
|
|
|
|
define <4 x i8> @foo(<4 x i8> %x, <4 x i8> %y) {
|
|
entry:
|
|
%binop = mul <4 x i8> %x, %y
|
|
%binop6 = add <4 x i8> %binop, %x
|
|
ret <4 x i8> %binop6
|
|
}
|
|
|
|
|