mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-08 18:31:23 +00:00
98a9b72e8c
Sorry for the unit test churn. I'll try to make the change permanently next time. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184705 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
233 B
LLVM
12 lines
233 B
LLVM
; RUN: llc -mcpu=generic -march=x86 -mattr=+sse < %s | FileCheck %s
|
|
; CHECK: divps
|
|
; CHECK: divps
|
|
; CHECK: divss
|
|
|
|
%vec = type <9 x float>
|
|
define %vec @vecdiv( %vec %p1, %vec %p2)
|
|
{
|
|
%result = fdiv %vec %p1, %p2
|
|
ret %vec %result
|
|
}
|